From 24deb986b796bcb2cdd3c2d084ff56d171507fc1 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Wed, 18 Oct 2017 11:57:38 -0700 Subject: [PATCH 01/37] Credential file changes --- .../EnvironmentSetupHelper.cs | 108 ++++++++++++++ tools/Modules/TestFx-Tasks.psd1 | 2 +- tools/Modules/TestFx-Tasks.psm1 | 140 +++++++++++++++++- 3 files changed, 247 insertions(+), 3 deletions(-) diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 5fdf523994..464b35eac6 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -87,6 +87,11 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest #endif // Set RunningMocked TestMockSupport.RunningMocked = HttpMockServer.GetCurrentMode() == HttpRecorderMode.Playback; + + if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.azure/testcredentials.json")) + { + SetEnvironmentVariableFromCredentialFile(); + } } public string RMProfileModule @@ -176,6 +181,109 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest #endif } + private void SetEnvironmentVariableFromCredentialFile() + { + var filePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.azure/testcredentials.json"; + Dictionary credentials; + using (StreamReader r = new StreamReader(filePath)) + { + string json = r.ReadToEnd(); + credentials = JsonUtilities.DeserializeJson(json); + } + + if (Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION") == null) + { + var formattedConnectionString = String.Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", credentials["SubscriptionId"], credentials["HttpRecorderMode"], credentials["Environment"]); + + if (credentials.ContainsKey("UserId")) + { + formattedConnectionString += String.Format(";UserId={0}", credentials["UserId"]); + } + + if (credentials.ContainsKey("Password")) + { + formattedConnectionString += String.Format(";Password={0}", credentials["Password"]); + } + + if (credentials.ContainsKey("AADTenant")) + { + formattedConnectionString += String.Format(";AADTenant={0}", credentials["AADTenant"]); + } + + if (credentials.ContainsKey("ServicePrincipal")) + { + formattedConnectionString += String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"]); + } + + if (credentials.ContainsKey("ServicePrincipalSecret")) + { + formattedConnectionString += String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"]); + } + + if (credentials.ContainsKey("ResourceManagementUri")) + { + formattedConnectionString += String.Format(";ResourceManagementUri={0}", credentials["ResourceManagementUri"]); + } + + if (credentials.ContainsKey("GraphUri")) + { + formattedConnectionString += String.Format(";GraphUri={0}", credentials["GraphUri"]); + } + + if (credentials.ContainsKey("AADAuthUri")) + { + formattedConnectionString += String.Format(";AADAuthUri={0}", credentials["AADAuthUri"]); + } + + if (credentials.ContainsKey("AADTokenAudienceUri")) + { + formattedConnectionString += String.Format(";AADTokenAudienceUri={0}", credentials["AADTokenAudienceUri"]); + } + + if (credentials.ContainsKey("GraphTokenAudienceUri")) + { + formattedConnectionString += String.Format(";GraphTokenAudienceUri={0}", credentials["GraphTokenAudienceUri"]); + } + + if (credentials.ContainsKey("IbizaPortalUri")) + { + formattedConnectionString += String.Format(";IbizaPortalUri={0}", credentials["IbizaPortalUri"]); + } + + if (credentials.ContainsKey("ServiceManagementUri")) + { + formattedConnectionString += String.Format(";ServiceManagementUri={0}", credentials["ServiceManagementUri"]); + } + + if (credentials.ContainsKey("RdfePortalUri")) + { + formattedConnectionString += String.Format(";RdfePortalUri={0}", credentials["RdfePortalUri"]); + } + + if (credentials.ContainsKey("GalleryUri")) + { + formattedConnectionString += String.Format(";GalleryUri={0}", credentials["GalleryUri"]); + } + + if (credentials.ContainsKey("DataLakeStoreServiceUri")) + { + formattedConnectionString += String.Format(";DataLakeStoreServiceUri={0}", credentials["DataLakeStoreServiceUri"]); + } + + if (credentials.ContainsKey("DataLakeAnalyticsJobAndCatalogServiceUri")) + { + formattedConnectionString += String.Format(";DataLakeAnalyticsJobAndCatalogServiceUri={0}", credentials["DataLakeAnalyticsJobAndCatalogServiceUri"]); + } + + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", formattedConnectionString); + } + + if (Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == null) + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", credentials["HttpRecorderMode"].ToString()); + } + } + private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) { TestEnvironment currentEnvironment = null; diff --git a/tools/Modules/TestFx-Tasks.psd1 b/tools/Modules/TestFx-Tasks.psd1 index d5709e08e2..ac5116211f 100644 --- a/tools/Modules/TestFx-Tasks.psd1 +++ b/tools/Modules/TestFx-Tasks.psd1 @@ -69,7 +69,7 @@ Copyright = '(c) 2016 ShahAbhijeet. All rights reserved.' # NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = 'Set-TestEnvironment', 'Remove-ServicePrincipal', 'New-ServicePrincipal', 'Set-SPNRole' +FunctionsToExport = 'Set-TestEnvironment', 'Remove-ServicePrincipal', 'New-ServicePrincipal', 'Set-SPNRole', 'New-AzureCredential' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index 6ff09e64f6..57e5b806b6 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -1,4 +1,139 @@ [CmdletBinding] + +Function New-AzureCredential +{ + [CmdletBinding( + DefaultParameterSetName='UserIdParamSet', + SupportsShouldProcess=$true + )] + param( + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] + [ValidateNotNullOrEmpty()] + [string]$UserId, + + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Password (OrgId) you would like to use")] + [ValidateNotNullOrEmpty()] + [securestring]$Password, + + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] + [ValidateNotNullOrEmpty()] + [string]$ServicePrincipal, + + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal Secret/ClientId Secret you would like to use')] + [ValidateNotNullOrEmpty()] + [string]$ServicePrincipalSecret, + + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true)] + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] + [ValidateNotNullOrEmpty()] + [string]$SubscriptionId, + + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='AADTenant/TenantId you would like to use')] + [ValidateNotNullOrEmpty()] + [string]$TenantId, + + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "Record tests, Playback tests, or neither")] + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Record tests, Playback tests, or neither")] + [ValidateSet("Playback", "Record", "None")] + [string]$RecordMode, + + [ValidateSet("Prod", "Dogfood", "Current", "Next", "Custom")] + [string]$TargetEnvironment='Prod', + + [string]$ResourceManagementUri, + [string]$GraphUri, + [string]$AADAuthUri, + [string]$AADTokenAudienceUri, + [string]$GraphTokenAudienceUri, + [string]$IbizaPortalUri, + [string]$ServiceManagementUri, + [string]$RdfePortalUri, + [string]$GalleryUri, + [string]$DataLakeStoreServiceUri, + [string]$DataLakeAnalyticsJobAndCatalogServiceUri + ) + + [hashtable]$credentials = @{} + $credentials.SubscriptionId = $SubscriptionId + $credentials.HttpRecorderMode = $RecordMode + $credentials.Environment = $TargetEnvironment + + if ([string]::IsNullOrEmpty($UserId) -eq $false) { + $credentials.UserId = $UserId + } + + if ([string]::IsNullOrEmpty($Password) -eq $false) { + $credentials.Password = $Password + } + + if ([string]::IsNullOrEmpty($TenantId) -eq $false) { + $credentials.TenantId = $TenantId + } + + if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { + $credentials.ServicePrincipal = $ServicePrincipal + } + + if ([string]::IsNullOrEmpty($ServicePrincipalSecret) -eq $false) { + $credentials.ServicePrincipalSecret = $ServicePrincipalSecret + } + + if ([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) { + $credentials.ResourceManagementUri = $ResourceManagementUri + } + + if ([string]::IsNullOrEmpty($GraphUri) -eq $false) { + $credentials.GraphUri = $GraphUri + } + + if ([string]::IsNullOrEmpty($AADAuthUri) -eq $false) { + $credentials.AADAuthUri = $AADAuthUri + } + + if ([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) { + $credentials.AADTokenAudienceUri = $AADTokenAudienceUri + } + + if ([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) { + $credentials.GraphTokenAudienceUri = $GraphTokenAudienceUri + } + + if ([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) { + $credentials.IbizaPortalUri = $IbizaPortalUri + } + + if ([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) { + $credentials.ServiceManagementUri = $ServiceManagementUri + } + + if ([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) { + $credentials.RdfePortalUri = $RdfePortalUri + } + + if ([string]::IsNullOrEmpty($GalleryUri) -eq $false) { + $credentials.GalleryUri = $GalleryUri + } + + if ([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) { + $credentials.DataLakeStoreServiceUri = $DataLakeStoreServiceUri + } + + if ([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) { + $credentials.DataLakeAnalyticsJobAndCatalogServiceUri = $DataLakeAnalyticsJobAndCatalogServiceUri + } + + $credentialsJson = $credentials | ConvertTo-Json + $directoryPath = $Env:USERPROFILE + "\.azure" + if (!(Test-Path $directoryPath) -and $PSCmdlet.ShouldContinue("Do you want to create directory: " + $directoryPath + " which will contain your credentials file?", "Create directory?")) { + New-Item -ItemType Directory -Path $directoryPath + } + $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" + $credentialsJson | Out-File $filePath + + Write-Host "" + Write-Host "Created credential file:" $filePath + +} Function Set-TestEnvironment { <# @@ -14,7 +149,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateNotNullOrEmpty()] [string]$UserId, - [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Password (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] [string]$Password, @@ -150,4 +285,5 @@ Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [str Write-Host "" } -export-modulemember -Function Set-TestEnvironment \ No newline at end of file +export-modulemember -Function Set-TestEnvironment +export-modulemember -Function New-AzureCredential \ No newline at end of file From e19e7f5d13ffd859ed6c5e35c293bab8b13a4cee Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Fri, 20 Oct 2017 16:54:07 -0700 Subject: [PATCH 02/37] Add service principal --- .../EnvironmentSetupHelper.cs | 6 ++- tools/Modules/TestFx-Tasks.psm1 | 43 ++++++++++++++++--- 2 files changed, 42 insertions(+), 7 deletions(-) diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 464b35eac6..5a442d556a 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -198,11 +198,13 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest if (credentials.ContainsKey("UserId")) { formattedConnectionString += String.Format(";UserId={0}", credentials["UserId"]); + formattedConnectionString += String.Format(";Password={0}", credentials["Password"]); } - if (credentials.ContainsKey("Password")) + if (credentials.ContainsKey("ServicePrincipal")) { - formattedConnectionString += String.Format(";Password={0}", credentials["Password"]); + formattedConnectionString += String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"]); + formattedConnectionString += String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"]); } if (credentials.ContainsKey("AADTenant")) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index 57e5b806b6..b30b865c94 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -3,7 +3,7 @@ Function New-AzureCredential { [CmdletBinding( - DefaultParameterSetName='UserIdParamSet', + DefaultParameterSetName='CreateSpnParamSet', SupportsShouldProcess=$true )] param( @@ -23,15 +23,26 @@ Function New-AzureCredential [ValidateNotNullOrEmpty()] [string]$ServicePrincipalSecret, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true)] + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal DisplayName you would like to set')] + [ValidateNotNullOrEmpty()] + [string]$NewServicePrincipalDisplayName, + + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal password')] + [ValidateNotNullOrEmpty()] + [string]$NewServicePrincipalPassword, + + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [ValidateNotNullOrEmpty()] [string]$SubscriptionId, + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='AADTenant/TenantId you would like to use')] [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='AADTenant/TenantId you would like to use')] [ValidateNotNullOrEmpty()] [string]$TenantId, + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "Record tests, Playback tests, or neither")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Record tests, Playback tests, or neither")] [ValidateSet("Playback", "Record", "None")] @@ -58,13 +69,35 @@ Function New-AzureCredential $credentials.HttpRecorderMode = $RecordMode $credentials.Environment = $TargetEnvironment - if ([string]::IsNullOrEmpty($UserId) -eq $false) { - $credentials.UserId = $UserId + if ([string]::IsNullOrEmpty($NewServicePrincipalDisplayName) -eq $false) { + Login-AzureRmAccount + $Scope = "/subscriptions/" + $SubscriptionId + $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $NewServicePrincipalPassword + Write-Host "New ServicePrincipal created: " + $NewServicePrincipal + + $NewRole = $null + $Retries = 0; + While ($NewRole -eq $null -and $Retries -le 6) + { + # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) + Start-Sleep 15 + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue + $Retries++; + } + $credentials.ServicePrincipal = $NewServicePrincipal.ApplicationId + $credentials.ServicePrincipalSecret = $NewServicePrincipalPassword } - if ([string]::IsNullOrEmpty($Password) -eq $false) { + if ([string]::IsNullOrEmpty($UserId) -eq $false) { + $credentials.UserId = $UserId $credentials.Password = $Password } + + if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { + $credentials.ServicePrincipal = $ServicePrincipal + $credentials.ServicePrincipalSecret = $ServicePrincipalSecret + } if ([string]::IsNullOrEmpty($TenantId) -eq $false) { $credentials.TenantId = $TenantId From d4d1f72997769bd8f8412f3f4f36500fd221c3b1 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Tue, 24 Oct 2017 17:27:09 -0700 Subject: [PATCH 03/37] initial changes --- .../AzureRM.Resources.psm1 | 45 +++++++++++++++++++ .../Commands.ResourceManager.Common.csproj | 3 ++ .../Resources/AzureRM.Resources.psd1 | 2 +- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 b/src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 new file mode 100644 index 0000000000..1beadd7044 --- /dev/null +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 @@ -0,0 +1,45 @@ +Function Init() +{ + #Initialize Code +} + +$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll' +$Assembly = [Reflection.Assembly]::LoadFrom($dllPath) +$AllCmdlets = $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} + +$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Commands.Resources.dll' +$Assembly = [Reflection.Assembly]::LoadFrom($dllPath) +$AllCmdlets += $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} + +$FilteredCommands = @() +$AllCmdlets | ForEach-Object { + $rgParameter = $_.GetProperties() | Where-Object {$_.Name -eq "ResourceGroupName"} + if ($rgParameter -ne $null) { + $parameterSets = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} + $isMandatory = $true + $parameterSets | ForEach-Object { + $hasParameterSet = $_.NamedArguments | where {$_.MemberName -eq "ParameterSetName"} + $MandatoryParam = $_.NamedArguments | where {$_.MemberName -eq "Mandatory"} + if (($hasParameterSet -ne $null) -or (!$MandatoryParam.TypedValue.Value)) { + $isMandatory = $false + } + } + if ($isMandatory) { + $FilteredCommands += $_ + } + } +} + +$FilteredCommands | ForEach-Object { + $input = $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").VerbName + "-" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").NounName + ":ResourceGroupName" + $global:PSDefaultParameterValues.Add($input, + { + $context = Get-AzureRmContext + if ($context.ExtendedProperties.ContainsKey("Default Resource Group")) { + $context.ExtendedProperties["Default Resource Group"] + } + }) +} + +#Execute Init +#Init \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index 2df1875205..a5eccbcd50 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -201,6 +201,9 @@ + + Always + Designer diff --git a/src/ResourceManager/Resources/AzureRM.Resources.psd1 b/src/ResourceManager/Resources/AzureRM.Resources.psd1 index a78f59ac11..833f19fd98 100644 --- a/src/ResourceManager/Resources/AzureRM.Resources.psd1 +++ b/src/ResourceManager/Resources/AzureRM.Resources.psd1 @@ -9,7 +9,7 @@ @{ # Script module or binary module file associated with this manifest. -# RootModule = '' +RootModule = 'AzureRM.Resources.psm1' # Version number of this module. ModuleVersion = '4.4.1' From b5c27cc5e2fe91eefce25ae33bffe105ee805b61 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Wed, 25 Oct 2017 16:58:36 -0700 Subject: [PATCH 04/37] put script in startup file --- .../Commands.ResourceManager.Common.csproj | 3 --- .../Commands.Resources/Commands.Resources.csproj | 14 +++++++------- .../StartupScripts/DefaultResourceGroup.psm1} | 11 ++--------- 3 files changed, 9 insertions(+), 19 deletions(-) rename src/ResourceManager/{Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 => Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1} (91%) diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index a5eccbcd50..2df1875205 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -201,9 +201,6 @@ - - Always - Designer diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index ae5afc12a1..eefd5c8393 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -173,6 +173,9 @@ + + Always + @@ -188,13 +191,10 @@ - - - - + + + + \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 b/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 similarity index 91% rename from src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 rename to src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 index 1beadd7044..c658808891 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/AzureRM.Resources.psm1 +++ b/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 @@ -1,9 +1,5 @@ -Function Init() -{ - #Initialize Code -} - -$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll' +# Set Default Resource Group for Resources cmdlets +$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Management.ResourceManager.dll' $Assembly = [Reflection.Assembly]::LoadFrom($dllPath) $AllCmdlets = $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} @@ -40,6 +36,3 @@ $FilteredCommands | ForEach-Object { } }) } - -#Execute Init -#Init \ No newline at end of file From 596d4835f26ea434aa433aea4d4dadb581702998 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Thu, 26 Oct 2017 14:52:49 -0700 Subject: [PATCH 05/37] fix small issues --- .../EnvironmentSetupHelper.cs | 1 - tools/Modules/TestFx-Tasks.psm1 | 127 ++++++++++++------ 2 files changed, 84 insertions(+), 44 deletions(-) diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 5a442d556a..5dccedcdbd 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -198,7 +198,6 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest if (credentials.ContainsKey("UserId")) { formattedConnectionString += String.Format(";UserId={0}", credentials["UserId"]); - formattedConnectionString += String.Format(";Password={0}", credentials["Password"]); } if (credentials.ContainsKey("ServicePrincipal")) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index b30b865c94..1efc01acac 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -7,14 +7,18 @@ Function New-AzureCredential SupportsShouldProcess=$true )] param( + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal DisplayName you would like to set')] + [ValidateNotNullOrEmpty()] + [string]$NewServicePrincipalDisplayName, + + [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal password')] + [ValidateNotNullOrEmpty()] + [string]$NewServicePrincipalPassword, + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] [string]$UserId, - [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Password (OrgId) you would like to use")] - [ValidateNotNullOrEmpty()] - [securestring]$Password, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] [ValidateNotNullOrEmpty()] [string]$ServicePrincipal, @@ -23,14 +27,6 @@ Function New-AzureCredential [ValidateNotNullOrEmpty()] [string]$ServicePrincipalSecret, - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal DisplayName you would like to set')] - [ValidateNotNullOrEmpty()] - [string]$NewServicePrincipalDisplayName, - - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal password')] - [ValidateNotNullOrEmpty()] - [string]$NewServicePrincipalPassword, - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] @@ -80,7 +76,7 @@ Function New-AzureCredential While ($NewRole -eq $null -and $Retries -le 6) { # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) - Start-Sleep 15 + Start-Sleep 5 New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue $Retries++; @@ -91,7 +87,6 @@ Function New-AzureCredential if ([string]::IsNullOrEmpty($UserId) -eq $false) { $credentials.UserId = $UserId - $credentials.Password = $Password } if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { @@ -182,10 +177,6 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateNotNullOrEmpty()] [string]$UserId, - [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Password (OrgId) you would like to use")] - [ValidateNotNullOrEmpty()] - [string]$Password, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] [ValidateNotNullOrEmpty()] [string]$ServicePrincipal, @@ -194,7 +185,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateNotNullOrEmpty()] [string]$ServicePrincipalSecret, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true)] + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [ValidateNotNullOrEmpty()] [string]$SubscriptionId, @@ -203,14 +194,26 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateNotNullOrEmpty()] [string]$TenantId, + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "Would you like to record or playback your tests?")] + [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Would you like to record or playback your tests?")] [ValidateSet("Playback", "Record", "None")] [string]$RecordMode='Playback', [ValidateSet("Prod", "Dogfood", "Current", "Next")] - [string]$TargetEnvironment='Prod' - ) + [string]$TargetEnvironment='Prod', - [string]$uris="https://management.azure.com/" + [string]$ResourceManagementUri, + [string]$GraphUri, + [string]$AADAuthUri, + [string]$AADTokenAudienceUri, + [string]$GraphTokenAudienceUri, + [string]$IbizaPortalUri, + [string]$ServiceManagementUri, + [string]$RdfePortalUri, + [string]$GalleryUri, + [string]$DataLakeStoreServiceUri, + [string]$DataLakeAnalyticsJobAndCatalogServiceUri + ) $formattedConnStr = [string]::Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", $SubscriptionId, $RecordMode, $TargetEnvironment) @@ -219,11 +222,6 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";UserId={0}"), $UserId) } - if([string]::IsNullOrEmpty($Password) -eq $false) - { - $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";Password={0}"), $Password) - } - if([string]::IsNullOrEmpty($TenantId) -eq $false) { $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADTenant={0}"), $TenantId) @@ -238,14 +236,69 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a { $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipalSecret={0}"), $ServicePrincipalSecret) } - - $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";BaseUri={0}"), $uris) + + #Uris + if([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ResourceManagementUri={0}"), $ResourceManagementUri) + } + + if([string]::IsNullOrEmpty($GraphUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphUri={0}"), $GraphUri) + } + + if([string]::IsNullOrEmpty($AADAuthUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADAuthUri={0}"), $AADAuthUri) + } + + if([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADTokenAudienceUri={0}"), $AADTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphTokenAudienceUri={0}"), $GraphTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";IbizaPortalUri={0}"), $IbizaPortalUri) + } + + if([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServiceManagementUri={0}"), $ServiceManagementUri) + } + + if([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";RdfePortalUri={0}"), $RdfePortalUri) + } + + if([string]::IsNullOrEmpty($GalleryUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GalleryUri={0}"), $GalleryUri) + } + + if([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeStoreServiceUri={0}"), $DataLakeStoreServiceUri) + } + + if([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeAnalyticsJobAndCatalogServiceUri={0}"), $DataLakeAnalyticsJobAndCatalogServiceUri) + } Write-Host "Below connection string is ready to be set" - Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris + Print-ConnectionString $UserId $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment #Set connection string to Environment variable $env:TEST_CSM_ORGID_AUTHENTICATION=$formattedConnStr + $env:AZURE_TEST_MODE=$RecordMode Write-Host "" # Retrieve the environment variable @@ -258,7 +311,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a Write-Host "Please visit https://github.com/Azure/azure-powershell/blob/dev/documentation/Using-Azure-TestFramework.md" -ForegroundColor Yellow } -Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [string]$aadTenant, [string]$spn, [string]$spnSecret, [string]$recordMode, [string]$targetEnvironment, [string]$uris) +Function Print-ConnectionString([string]$uid, [string]$subId, [string]$aadTenant, [string]$spn, [string]$spnSecret, [string]$recordMode, [string]$targetEnvironment) { if([string]::IsNullOrEmpty($uid) -eq $false) @@ -267,12 +320,6 @@ Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [str Write-Host $uid";" -NoNewline } - if([string]::IsNullOrEmpty($pwd) -eq $false) - { - Write-Host "Password=" -ForegroundColor Green -NoNewline - Write-Host $pwd";" -NoNewline - } - if([string]::IsNullOrEmpty($subId) -eq $false) { Write-Host "SubscriptionId=" -ForegroundColor Green -NoNewline @@ -309,12 +356,6 @@ Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [str Write-Host $targetEnvironment";" -NoNewline } - if([string]::IsNullOrEmpty($uris) -eq $false) - { - Write-Host "BaseUri=" -ForegroundColor Green -NoNewline - Write-Host $uris -NoNewline - } - Write-Host "" } From 2f31fbdf6e0449aa097a2b2b461e035c5452fa1e Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Thu, 26 Oct 2017 17:15:05 -0700 Subject: [PATCH 06/37] remove old changes --- src/ResourceManager/Resources/AzureRM.Resources.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Resources/AzureRM.Resources.psd1 b/src/ResourceManager/Resources/AzureRM.Resources.psd1 index 833f19fd98..a78f59ac11 100644 --- a/src/ResourceManager/Resources/AzureRM.Resources.psd1 +++ b/src/ResourceManager/Resources/AzureRM.Resources.psd1 @@ -9,7 +9,7 @@ @{ # Script module or binary module file associated with this manifest. -RootModule = 'AzureRM.Resources.psm1' +# RootModule = '' # Version number of this module. ModuleVersion = '4.4.1' From 8551f1ff1b310de367ac5ed232345ede679b9e68 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 30 Oct 2017 12:22:29 -0700 Subject: [PATCH 07/37] first changes --- tools/UnlistModules.ps1 | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tools/UnlistModules.ps1 diff --git a/tools/UnlistModules.ps1 b/tools/UnlistModules.ps1 new file mode 100644 index 0000000000..b9407d6992 --- /dev/null +++ b/tools/UnlistModules.ps1 @@ -0,0 +1,35 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +function Remove-RMModule +{ + [CmdletBinding()] + param( + [string]$Path, + [string]$ApiKey, + [string]$RepoLocation, + [string]$nugetExe + ) + + PROCESS + { + $moduleName = (Get-Item -Path $Path).Name + $moduleManifest = $moduleName + ".psd1" + $moduleSourcePath = Join-Path -Path $Path -ChildPath $moduleManifest + $manifest = Test-ModuleManifest -Path $moduleSourcePath + Write-Output "Unlisting package $moduleName from nuget source $RepoLocation" + &$nugetExe delete $moduleName $manifest.Version.ToString() -s $RepoLocation apikey $ApiKey + Write-Output "Unlisting package $moduleName from nuget source $RepoLocation" + } +} \ No newline at end of file From 7f0947fb06e5d6e454508d8397c87f2a9646e68f Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 30 Oct 2017 13:00:30 -0700 Subject: [PATCH 08/37] changes per review --- .../EnvironmentSetupHelper.cs | 40 ++++++++++--------- tools/Modules/TestFx-Tasks.psm1 | 5 +-- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 5dccedcdbd..278a24f727 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -32,6 +32,7 @@ using System.Linq; using System.Management.Automation; using System.Net.Http; using System.Threading; +using System.Text; #if !NETSTANDARD using Microsoft.Azure.Commands.Common.Authentication.Utilities; @@ -193,90 +194,91 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest if (Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION") == null) { - var formattedConnectionString = String.Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", credentials["SubscriptionId"], credentials["HttpRecorderMode"], credentials["Environment"]); + StringBuilder formattedConnectionString = new StringBuilder(); + formattedConnectionString.Append(String.Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", credentials["SubscriptionId"], credentials["HttpRecorderMode"], credentials["Environment"])); if (credentials.ContainsKey("UserId")) { - formattedConnectionString += String.Format(";UserId={0}", credentials["UserId"]); + formattedConnectionString.Append(String.Format(";UserId={0}", credentials["UserId"])); } if (credentials.ContainsKey("ServicePrincipal")) { - formattedConnectionString += String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"]); - formattedConnectionString += String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"]); + formattedConnectionString.Append(String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"])); + formattedConnectionString.Append(String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"])); } if (credentials.ContainsKey("AADTenant")) { - formattedConnectionString += String.Format(";AADTenant={0}", credentials["AADTenant"]); + formattedConnectionString.Append(String.Format(";AADTenant={0}", credentials["AADTenant"])); } if (credentials.ContainsKey("ServicePrincipal")) { - formattedConnectionString += String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"]); + formattedConnectionString.Append(String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"])); } if (credentials.ContainsKey("ServicePrincipalSecret")) { - formattedConnectionString += String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"]); + formattedConnectionString.Append(String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"])); } if (credentials.ContainsKey("ResourceManagementUri")) { - formattedConnectionString += String.Format(";ResourceManagementUri={0}", credentials["ResourceManagementUri"]); + formattedConnectionString.Append(String.Format(";ResourceManagementUri={0}", credentials["ResourceManagementUri"])); } if (credentials.ContainsKey("GraphUri")) { - formattedConnectionString += String.Format(";GraphUri={0}", credentials["GraphUri"]); + formattedConnectionString.Append(String.Format(";GraphUri={0}", credentials["GraphUri"])); } if (credentials.ContainsKey("AADAuthUri")) { - formattedConnectionString += String.Format(";AADAuthUri={0}", credentials["AADAuthUri"]); + formattedConnectionString.Append(String.Format(";AADAuthUri={0}", credentials["AADAuthUri"])); } if (credentials.ContainsKey("AADTokenAudienceUri")) { - formattedConnectionString += String.Format(";AADTokenAudienceUri={0}", credentials["AADTokenAudienceUri"]); + formattedConnectionString.Append(String.Format(";AADTokenAudienceUri={0}", credentials["AADTokenAudienceUri"])); } if (credentials.ContainsKey("GraphTokenAudienceUri")) { - formattedConnectionString += String.Format(";GraphTokenAudienceUri={0}", credentials["GraphTokenAudienceUri"]); + formattedConnectionString.Append(String.Format(";GraphTokenAudienceUri={0}", credentials["GraphTokenAudienceUri"])); } if (credentials.ContainsKey("IbizaPortalUri")) { - formattedConnectionString += String.Format(";IbizaPortalUri={0}", credentials["IbizaPortalUri"]); + formattedConnectionString.Append(String.Format(";IbizaPortalUri={0}", credentials["IbizaPortalUri"])); } if (credentials.ContainsKey("ServiceManagementUri")) { - formattedConnectionString += String.Format(";ServiceManagementUri={0}", credentials["ServiceManagementUri"]); + formattedConnectionString.Append(String.Format(";ServiceManagementUri={0}", credentials["ServiceManagementUri"])); } if (credentials.ContainsKey("RdfePortalUri")) { - formattedConnectionString += String.Format(";RdfePortalUri={0}", credentials["RdfePortalUri"]); + formattedConnectionString.Append(String.Format(";RdfePortalUri={0}", credentials["RdfePortalUri"])); } if (credentials.ContainsKey("GalleryUri")) { - formattedConnectionString += String.Format(";GalleryUri={0}", credentials["GalleryUri"]); + formattedConnectionString.Append(String.Format(";GalleryUri={0}", credentials["GalleryUri"])); } if (credentials.ContainsKey("DataLakeStoreServiceUri")) { - formattedConnectionString += String.Format(";DataLakeStoreServiceUri={0}", credentials["DataLakeStoreServiceUri"]); + formattedConnectionString.Append(String.Format(";DataLakeStoreServiceUri={0}", credentials["DataLakeStoreServiceUri"])); } if (credentials.ContainsKey("DataLakeAnalyticsJobAndCatalogServiceUri")) { - formattedConnectionString += String.Format(";DataLakeAnalyticsJobAndCatalogServiceUri={0}", credentials["DataLakeAnalyticsJobAndCatalogServiceUri"]); + formattedConnectionString.Append(String.Format(";DataLakeAnalyticsJobAndCatalogServiceUri={0}", credentials["DataLakeAnalyticsJobAndCatalogServiceUri"])); } - Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", formattedConnectionString); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", formattedConnectionString.ToString()); } if (Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == null) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index 1efc01acac..2691a36652 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -1,6 +1,4 @@ -[CmdletBinding] - -Function New-AzureCredential +Function New-AzureCredential { [CmdletBinding( DefaultParameterSetName='CreateSpnParamSet', @@ -81,6 +79,7 @@ Function New-AzureCredential $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue $Retries++; } + $credentials.ServicePrincipal = $NewServicePrincipal.ApplicationId $credentials.ServicePrincipalSecret = $NewServicePrincipalPassword } From 27498b1946dbb09758af750f65289b0c4a001a1b Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Tue, 31 Oct 2017 13:48:00 -0700 Subject: [PATCH 09/37] start tests --- tools/Modules/TestFx-Tasks.psm1 | 1 - tools/Modules/Tests/RepoModuleTests.ps1 | 13 +++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index 2691a36652..928c28c849 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -64,7 +64,6 @@ $credentials.Environment = $TargetEnvironment if ([string]::IsNullOrEmpty($NewServicePrincipalDisplayName) -eq $false) { - Login-AzureRmAccount $Scope = "/subscriptions/" + $SubscriptionId $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $NewServicePrincipalPassword Write-Host "New ServicePrincipal created: " + $NewServicePrincipal diff --git a/tools/Modules/Tests/RepoModuleTests.ps1 b/tools/Modules/Tests/RepoModuleTests.ps1 index 75c537b1b1..9d11b27505 100644 --- a/tools/Modules/Tests/RepoModuleTests.ps1 +++ b/tools/Modules/Tests/RepoModuleTests.ps1 @@ -8,3 +8,16 @@ Set-SPNRole -ADAppDisplayName "MyModTestApp1" -SubscriptionId 2c224e7e-3ef5-431d-a57b-e71f4662e3a6 Remove-ServicePrincipal -ADAppDisplayName "MyModTestApp1" -SubscriptionId 2c224e7e-3ef5-431d-a57b-e71f4662e3a6 -TenantId 72f988bf-86f1-41af-91ab-2d7cd011db47 } + + +Function Test-NewServicePrincipalCredential +{ + # Test that Service Principal is correctly created + $context = Get-AzureRmContext + New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalPassword "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" + $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialstestserviceprincipal + Remove-AzureRmADServicePrincipal -ObjectId $servicePrincipal.Id -Force + + #Test that connection string is properly set + +} \ No newline at end of file From c30c50acd7b56b3a1eaf85f136a3e97a3e56ea76 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Tue, 31 Oct 2017 18:00:59 -0700 Subject: [PATCH 10/37] Move script to updatemodule --- .../StartupScripts/DefaultResourceGroup.psm1 | 1 + tools/AzureRM.Example.psm1 | Bin 740 -> 3764 bytes tools/UpdateModules.ps1 | 11 ++++++++++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 b/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 index c658808891..11dcb8969c 100644 --- a/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 +++ b/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 @@ -1,4 +1,5 @@ # Set Default Resource Group for Resources cmdlets +$nestedModules = Test-ModuleManifest '../AzureRM.Profile.psd1' $dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Management.ResourceManager.dll' $Assembly = [Reflection.Assembly]::LoadFrom($dllPath) $AllCmdlets = $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} diff --git a/tools/AzureRM.Example.psm1 b/tools/AzureRM.Example.psm1 index d71d57baa058d90cfccde11d897061b8e6e40af9..56bb44630a03edf0dd6ae29f28c8f0bc7870c362 100644 GIT binary patch literal 3764 zcmd5FGuf99av}#(m4?)@bAbJANPGQ$bp)L;-ecHE@Et*_BQvSt`xG|2crt?35p2@( zJGFeTpFGjWD#pIo=vPI$DNWrKcv+X0`sSjxll)bdb7?}N2dizxA;C^ty&Phfo{r@s zb_RG#R6=-0v?#M9yNYB}C9BYsV3)BZb7YBX73ZmCvWVdXr>U73(+lUhOdJ4K+Knx!fgiCZFjmwOi$csDiBY73!mg`W?Zi2>!ADhKOj{x^diFB?`rOlyf#h zVQnTrd8S;RC}M#Skxz(>Ozjn*!B|;oWO|~0)$wiB)xoY+4`W*1b(TWpw~ctL0=v)= zL$(bxV(1K{l*wpbPif9VA9oQC=s|>+M=i?}!_N3@Y&wJo1NEPgNAQBETj!0`vt?!# z*);?=;nWuLIYv$9yP9W}%hI`WfIVjn53Sp<$8DOgG~(<^M44P7waRnF$Ei( zv_pCe7TKqWTGyq)DCD_R%t?n( zJ~Md@9wWxc9?qW2$s1fFK zsySg5G8eS_u;>8Hq1F5;JZC>62b~5^mDOmOWha|PivH$t@_7GyZ}Zl({yD~z^Xrf; z=6+SP&#HN`Cfab(g`?DsCQPk&m#WD!{y5usZ}M~6SYrK-Yrk@lu3~Stj+wdjopMhn zxtoh=duI1(eRuOpU<@%j4d+mrLpJNyO|2bt#U|>NlZ{-r`%?@Yd2?dlVvTUJP(P;w zYuruo^n5Am6T3KR_p?r_e)iyJ2~||WH`i8c|BJs3oey!&-`YmggL9R9xd9JH=p5u@ z4IS#K_j*6ceRf~zjf>3kGlsU@eWEAdkQ?KGp;<-Vz9Vy-?ia`%=R5OhlIAP*`FhCe z3UME$PIvE*5D9N)*{RHFmA%ot$B7xbKxygUOpwDcNX_69Dt@{0^6_ov)8&(GUoFsO Nr?7uzR>kRi(_gKVTE+kX delta 7 OcmdlY`-FAF6D9x-0|QY2 diff --git a/tools/UpdateModules.ps1 b/tools/UpdateModules.ps1 index 22959c4dbb..b696541466 100644 --- a/tools/UpdateModules.ps1 +++ b/tools/UpdateModules.ps1 @@ -48,6 +48,15 @@ function Create-ModulePsm1 $template = $template -replace "%DATE%", [string](Get-Date) $template = $template -replace "%STRICT-DEPENDENCIES%", $strict $template = $template -replace "%DEPENDENCIES%", $loose + + $nestedModules = $module.NestedModules + $dllModules = "@(" + $nestedModules | ForEach-Object { + $dllModules += "'./" + $_ + ".dll'," + } + $dllModules += ")" + $template = $template -replace "%NESTED-MODULES%", $dllModules + Write-Host "Writing psm1 manifest to $templateOutputPath" $template | Out-File -FilePath $templateOutputPath -Force $file = Get-Item -Path $templateOutputPath @@ -57,7 +66,7 @@ function Create-ModulePsm1 if ([string]::IsNullOrEmpty($buildConfig)) { Write-Verbose "Setting build configuration to 'Release'" - $buildConfig = "Release" + $buildConfig = "Debug" } if ([string]::IsNullOrEmpty($scope)) From 8fa07b2fdd6725a46ecb1f512d76b5ee353794a6 Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Wed, 1 Nov 2017 13:24:49 -0700 Subject: [PATCH 11/37] fix roleassignment issues --- .../Commands.Resources.Test.csproj | 3 + .../ScenarioTests/RoleAssignmentTests.cs | 6 + .../ScenarioTests/RoleAssignmentTests.ps1 | 45 + .../RaPropertiesValidation.json | 3234 +++++++++++++++++ .../RaValidateInputParameters.json | 616 ++-- .../AuthorizationClient.cs | 11 +- 6 files changed, 3604 insertions(+), 311 deletions(-) create mode 100644 src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json 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 14e9bf24ae..9dc019bfde 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -709,6 +709,9 @@ Always + + Always + PreserveNewest diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs index 445aa79562..442caa2cd5 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs @@ -44,6 +44,12 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests ResourcesController.NewInstance.RunPsTest("Test-RaClassicAdmins"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RaPropertiesValidation() { + ResourcesController.NewInstance.RunPsTest("Test-RaPropertiesValidation"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void RaNegativeScenarios() diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index 41768632fa..860fdf7a12 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -379,6 +379,51 @@ function Test-RaDeletionByScopeAtRootScope VerifyRoleAssignmentDeleted $newAssignment } +<# +.SYNOPSIS +Tests verifies creation and validation of RoleAssignment properties for not null +#> +function Test-RaPropertiesValidation +{ + # Setup + $definitionName = 'CustomRole Tests Role' + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleDefinitionNames.Enqueue("8D7DD69E-9AE2-44A1-94D8-F7BC8E12645E") + New-AzureRmRoleDefinition -InputFile .\Resources\NewRoleDefinition.json + $users = Get-AzureRmADUser | Select-Object -First 1 -Wait + $subscription = Get-AzureRmSubscription + $resourceGroups = Get-AzureRmResourceGroup | Select-Object -Last 1 -Wait + $scope = '/subscriptions/'+$subscription[0].Id + Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." + $rd = Get-AzureRmRoleDefinition -Name $definitionName + + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("fa1a4d3b-2cca-406b-8956-6b6b32377641") + $newAssignment = New-AzureRmRoleAssignment ` + -ObjectId $users[0].Id.Guid ` + -RoleDefinitionName $definitionName ` + -Scope $scope + $newAssignment.Scope = $scope.toUpper() + + $assignments = Get-AzureRmRoleAssignment + Assert-NotNull $assignments + foreach ($assignment in $assignments){ + Assert-NotNull $assignment + Assert-NotNull $assignment.RoleDefinitionName + Assert-AreNotEqual $assignment.RoleDefinitionName "" + } + + # cleanup + DeleteRoleAssignment $newAssignment + Remove-AzureRmRoleDefinition -Id $rd.Id -Force + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + + VerifyRoleAssignmentDeleted $newAssignment +} <# .SYNOPSIS 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 new file mode 100644 index 0000000000..d2e549196d --- /dev/null +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json @@ -0,0 +1,3234 @@ +{ + "Entries": [ + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"description\": \"Test role\",\r\n \"type\": \"CustomRole\",\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 \"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": [ + "462" + ], + "x-ms-client-request-id": [ + "823e5471-9987-4cfa-8578-55c8d866a865" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3e7eb76-ab85-4512-8f30-7b0b69362f99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a3c74c8a-ae9e-4e2e-be4a-98125271a363" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200103Z:a3c74c8a-ae9e-4e2e-be4a-98125271a363" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/users?api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi91c2Vycz9hcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd154772-918f-4bda-bce2-21cd4c332c7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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.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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "114106" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=" + ], + "request-id": [ + "4c5adc63-7aeb-4527-b139-75b54dc8c065" + ], + "client-request-id": [ + "dc195f09-adc9-4c72-9846-5c73178aad33" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "BKHM2sLLvXDgwdYDtlmcYINJQFuAkSOguT_NaCOTYpvLUkESs65WfjcnNEEhxo45U-QFa8sAQ5PHJlVgBbfd0qXYmsGUXImIjv6vuWYI9o5yLFtJ_RHmxggQBGbjTtHg.4s27pwnwuoiEU6xa8Gmm94e5X2F01S75nHEVJy-svrI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2609437" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAxMDAwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzMTM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTM0NjIzMTYxMzkzODM0MkQ2MzMxMzkzMDJEMzQzNjYyMzUyRDM4MzY2MzY1MkQ2NTMyNjM2NTMyNjYzOTM1MzIzODM5NjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5eb712e-8ac4-4476-9f35-d6a7d235ace4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63656561656232302D373062302D346637632D383063362D666531323166623163363230004A3A74657374557365723033393164663236632D393636372D343064382D616635382D3034656232366665366432394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61623131303465342D636338632D346134382D626434372D336366633336363339393334B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "120072" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "kpTVY9vhytH2Y1JxyUkph+h7pjb7c5rbFUPU3WdgiQ0=" + ], + "request-id": [ + "33007d5f-6a2b-4b67-9504-6b87b6c16ae1" + ], + "client-request-id": [ + "a795dad5-24f1-437e-bb89-f2687b9050e9" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "jYW8p18-7_s_De3NwPsPkJUptkjLjGJS73hGN8OCaIyCiBdZyA4tDz6lJCm5EhOoCmEMK6xRk0wFQmEPtqNUjfvct62C-U4ZXrGMkN_l4IZfZsijtqUGjARK-ot5EfBl.cXK-bmXi9HfDxz1QXdH77JbrmWM0CzUabtrTeWqYye4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1251705" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63656561656232302D373062302D346637632D383063362D666531323166623163363230004A3A74657374557365723033393164663236632D393636372D343064382D616635382D3034656232366665366432394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61623131303465342D636338632D346134382D626434372D336366633336363339393334B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzOTMyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MzY1NjU2MTY1NjIzMjMwMkQzNzMwNjIzMDJEMzQ2NjM3NjMyRDM4MzA2MzM2MkQ2NjY1MzEzMjMxNjY2MjMxNjMzNjMyMzAwMDRBM0E3NDY1NzM3NDU1NzM2NTcyMzAzMzM5MzE2NDY2MzIzNjYzMkQzOTM2MzYzNzJEMzQzMDY0MzgyRDYxNjYzNTM4MkQzMDM0NjU2MjMyMzY2NjY1MzY2NDMyMzk0MDcyNjI2MTYzNDM2QzY5NTQ2NTczNzQyRTZGNkU2RDY5NjM3MjZGNzM2RjY2NzQyRTYzNkY2RDI5NTU3MzY1NzI1RjYxNjIzMTMxMzAzNDY1MzQyRDYzNjMzODYzMkQzNDYxMzQzODJENjI2NDM0MzcyRDMzNjM2NjYzMzMzNjM2MzMzOTM5MzMzNEI5MDAwMDAwMDAwMDAwMDAwMDAwMDAnJmFwaS12ZXJzaW9uPTEuNg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1d041a7-7525-4c81-a5f5-d4f3774b3d87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033613466663566302D666465302D346636612D393165382D3135636539613039356431394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32363235366331312D643865642D343534662D393539362D633962383133373133613164004A3A74657374557365723063333464633431662D376339642D346531662D393161622D3261336332323266616563304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37623836616637382D356666392D346132372D383832322D663336316436306239656334B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124697" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + ], + "request-id": [ + "1dc2b08e-f696-4acf-b055-da3737b36a99" + ], + "client-request-id": [ + "65a2ba44-3f4c-41b3-bebc-a0f7ae42f6ef" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "bsHcySWrM2jMSoLrq_JaeVJbkFKDdViw0qGLeCxMIlJoAJdT8QE7rCKwAGGSYh9JQ0PWou49aVR53I1tQPijcbob-iX5wE2H6jLqxB9-JA3KEXbjJKgfvg13L3tpzPgt.dKD5bOKcRe1Ng9UZ6vkQ_yQ2rGEPfQqJXUDCJVqAb_s" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1497649" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033613466663566302D666465302D346636612D393165382D3135636539613039356431394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32363235366331312D643865642D343534662D393539362D633962383133373133613164004A3A74657374557365723063333464633431662D376339642D346531662D393161622D3261336332323266616563304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37623836616637382D356666392D346132372D383832322D663336316436306239656334B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDMzNjEzNDY2NjYzNTY2MzAyRDY2NjQ2NTMwMkQzNDY2MzY2MTJEMzkzMTY1MzgyRDMxMzU2MzY1Mzk2MTMwMzkzNTY0MzEzOTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzIzNjMyMzUzNjYzMzEzMTJENjQzODY1NjQyRDM0MzUzNDY2MkQzOTM1MzkzNjJENjMzOTYyMzgzMTMzMzczMTMzNjEzMTY0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMwNjMzMzM0NjQ2MzM0MzE2NjJEMzc2MzM5NjQyRDM0NjUzMTY2MkQzOTMxNjE2MjJEMzI2MTMzNjMzMjMyMzI2NjYxNjU2MzMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNzYyMzgzNjYxNjYzNzM4MkQzNTY2NjYzOTJEMzQ2MTMyMzcyRDM4MzgzMjMyMkQ2NjMzMzYzMTY0MzYzMDYyMzk2NTYzMzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "569f5c09-a2cd-47ff-b63b-4f5235b59a14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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.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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723063363664336336632D643332312D346361392D613536312D6130643664613031636164334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62303439363866342D643135652D343833642D396135612D303237656138653830373637004A3A74657374557365723135333435386366652D633835372D343665312D393465342D3332386266386131626438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30386236613036392D646561352D343630652D393538662D393165343330313831643935B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124565" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" + ], + "request-id": [ + "632dc227-dd96-4e63-ac5a-d431c895207b" + ], + "client-request-id": [ + "135593ef-b778-4d65-bd08-7cbdecca3190" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Xqqo5yO3pnD18yWgWtJJXGzaWQAzLCpPhDCutOTu4ZQAnGHaP6Koz2pP1o5rb1S1S9TryOImnPVER0Mjf2cyBlmTN8WcU1hBVSNAuXDBETBrx0PTM8cHOsbaq-gC1JhZ.jwYxkPKscad6BDmF9JSju6KaQZjVqqGsz4DtYxt5AF4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1155626" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723063363664336336632D643332312D346361392D613536312D6130643664613031636164334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62303439363866342D643135652D343833642D396135612D303237656138653830373637004A3A74657374557365723135333435386366652D633835372D343665312D393465342D3332386266386131626438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30386236613036392D646561352D343630652D393538662D393165343330313831643935B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDYzMzYzNjY0MzM2MzM2NjMyRDY0MzMzMjMxMkQzNDYzNjEzOTJENjEzNTM2MzEyRDYxMzA2NDM2NjQ2MTMwMzE2MzYxNjQzMzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjIzMDM0MzkzNjM4NjYzNDJENjQzMTM1NjUyRDM0MzgzMzY0MkQzOTYxMzU2MTJEMzAzMjM3NjU2MTM4NjUzODMwMzczNjM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxMzUzMzM0MzUzODYzNjY2NTJENjMzODM1MzcyRDM0MzY2NTMxMkQzOTM0NjUzNDJEMzMzMjM4NjI2NjM4NjEzMTYyNjQzODM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDM4NjIzNjYxMzAzNjM5MkQ2NDY1NjEzNTJEMzQzNjMwNjUyRDM5MzUzODY2MkQzOTMxNjUzNDMzMzAzMTM4MzE2NDM5MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38de34dc-f558-4684-888a-4f1f0e5065ce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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.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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723135333439346532392D373431392D343833362D393838342D3638396464646265663132314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62646138613536382D633338382D346665352D626139392D373533636236653765613239004A3A74657374557365723165306536616461302D633532612D343466642D613932322D3162353666363739623939344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33643537636132622D326133612D343035352D393861372D303463363439346561656364B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124669" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + ], + "request-id": [ + "21c847ad-22c0-407f-8e00-f25902192b1b" + ], + "client-request-id": [ + "8bac0e78-3975-4696-8fca-a7d66e279065" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "0omeYp7a_cZO0sP4_QxNjK9tuRzSNCGA2IT5BWidAnMCjGN6LZx8BY1JS29P957qoA2umopmG38qR1slW8Nqly9_bjFCEmeYzD0mXCOG6sQiJGoV22yOK0dM1chsD3IF.a1yxuTvOGGHq9QnE5btXUcNtg8jqq1XtEKThIFkhn1Q" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1330767" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723135333439346532392D373431392D343833362D393838342D3638396464646265663132314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62646138613536382D633338382D346665352D626139392D373533636236653765613239004A3A74657374557365723165306536616461302D633532612D343466642D613932322D3162353666363739623939344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33643537636132622D326133612D343035352D393861372D303463363439346561656364B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTM1MzMzNDM5MzQ2NTMyMzkyRDM3MzQzMTM5MkQzNDM4MzMzNjJEMzkzODM4MzQyRDM2MzgzOTY0NjQ2NDYyNjU2NjMxMzIzMTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2NDYxMzg2MTM1MzYzODJENjMzMzM4MzgyRDM0NjY2NTM1MkQ2MjYxMzkzOTJEMzczNTMzNjM2MjM2NjUzNzY1NjEzMjM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxNjUzMDY1MzY2MTY0NjEzMDJENjMzNTMyNjEyRDM0MzQ2NjY0MkQ2MTM5MzIzMjJEMzE2MjM1MzY2NjM2MzczOTYyMzkzOTM0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzY0MzUzNzYzNjEzMjYyMkQzMjYxMzM2MTJEMzQzMDM1MzUyRDM5Mzg2MTM3MkQzMDM0NjMzNjM0MzkzNDY1NjE2NTYzNjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bdadd4a2-6dc9-446f-9224-fa75c4aea9b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723165323531303033662D343038322D346236332D623438332D3538346365316163313834634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37383138356534652D303336352D343766392D383837632D353838393735343831663438004A3A74657374557365723235623561373362652D383263322D343933312D613361382D6634313436303061656336314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64333730393130302D656165632D343864382D383166372D633034643230393337643261B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124577" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" + ], + "request-id": [ + "e20e18ba-dfc0-42ce-abc4-a6bcfac3417f" + ], + "client-request-id": [ + "87d63501-fd6b-4f42-9935-b48499035908" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "3bRFs_QLCjTF_1sUR2i_4603Wk_9WKLqZbcPW14G9bnrq4De2ayTE55CaVeMLXGamAZ1oL5h992TpfhUNN5_DeySU-Cqtiqs8uFh7bbGIO55DuJZF2_6DfJO4DTpRu8I.12Yt5S4rFNC4j6y0CWENCtV6di_8PLVjWPyqPWS6Yzc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1132372" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723165323531303033662D343038322D346236332D623438332D3538346365316163313834634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37383138356534652D303336352D343766392D383837632D353838393735343831663438004A3A74657374557365723235623561373362652D383263322D343933312D613361382D6634313436303061656336314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64333730393130302D656165632D343864382D383166372D633034643230393337643261B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTY1MzIzNTMxMzAzMDMzNjYyRDM0MzAzODMyMkQzNDYyMzYzMzJENjIzNDM4MzMyRDM1MzgzNDYzNjUzMTYxNjMzMTM4MzQ2MzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczODMxMzgzNTY1MzQ2NTJEMzAzMzM2MzUyRDM0Mzc2NjM5MkQzODM4Mzc2MzJEMzUzODM4MzkzNzM1MzQzODMxNjYzNDM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyMzU2MjM1NjEzNzMzNjI2NTJEMzgzMjYzMzIyRDM0MzkzMzMxMkQ2MTMzNjEzODJENjYzNDMxMzQzNjMwMzA2MTY1NjMzNjMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NDMzMzczMDM5MzEzMDMwMkQ2NTYxNjU2MzJEMzQzODY0MzgyRDM4MzE2NjM3MkQ2MzMwMzQ2NDMyMzAzOTMzMzc2NDMyNjFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0673b164-c8de-4794-b524-06e75c86c59b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723235643837643665372D393731342D346134622D616161372D3936343139626264646264374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37356361666462342D643839382D346563622D396639632D33663462333266336163613600263A7465737455736572334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31306466323361372D666539392D343164352D613732652D393232626435633530316362B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124517" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" + ], + "request-id": [ + "1a5c77cb-7ced-4ea2-819c-e6fc9068fbeb" + ], + "client-request-id": [ + "3707a9e5-acc8-413c-8f2f-7ab1f1f5d867" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "cbfZCuFJ7zuAmt81GhNBl0sySie82Aev_sTyqITDRfkm4ng4KqRd7pw6Mcucg9E0AWRV88HA1pECnwgVkfCNeTy-jMcQlUX2950J2U43xpzLuliUrqn5oDGHDqBTgzNU.7jDFsWfnssy2aUOaJGBIZK2wZDz6nIsyfAG7orr1Nhg" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1122259" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723235643837643665372D393731342D346134622D616161372D3936343139626264646264374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37356361666462342D643839382D346563622D396639632D33663462333266336163613600263A7465737455736572334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31306466323361372D666539392D343164352D613732652D393232626435633530316362B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjM1NjQzODM3NjQzNjY1MzcyRDM5MzczMTM0MkQzNDYxMzQ2MjJENjE2MTYxMzcyRDM5MzYzNDMxMzk2MjYyNjQ2NDYyNjQzNzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNTYzNjE2NjY0NjIzNDJENjQzODM5MzgyRDM0NjU2MzYyMkQzOTY2Mzk2MzJEMzM2NjM0NjIzMzMyNjYzMzYxNjM2MTM2MDAyNjNBNzQ2NTczNzQ1NTczNjU3MjMzNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTMwNjQ2NjMyMzM2MTM3MkQ2NjY1MzkzOTJEMzQzMTY0MzUyRDYxMzczMjY1MkQzOTMyMzI2MjY0MzU2MzM1MzAzMTYzNjJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dc6bc2d-4239-4fe3-bcd1-2f30bf1cfe86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723330306332613062362D626430392D343664642D383534632D3039666536303766333061394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33356264613462392D316635652D343036622D626439622D373130396563323930386661004A3A74657374557365723336653937653566652D393235622D346230352D393939312D3138643562656132303863664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65646264646463652D383132632D343265342D613665612D323737366231346232643565B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124689" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + ], + "request-id": [ + "e588c8bb-024c-4424-9063-48d2e5c7350b" + ], + "client-request-id": [ + "c5c56830-499e-41e8-a149-f44b05c6f638" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "f0K7z0yYXb6fqP3Wn-ziWcUf75cCWS_aCplY4RJm5i-_Mj7D4Wucw2jd1VERYkhgZcN9NbrFGvwxsPcVkommyzV5e0AxOo3cD7eNh-J8hBsqaJJJDT1n5v3f1rcj85-K.4MuT1QG8M4wEs9idWVnJWWX21dBBpIYj-m64E8wygKY" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1226901" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723330306332613062362D626430392D343664642D383534632D3039666536303766333061394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33356264613462392D316635652D343036622D626439622D373130396563323930386661004A3A74657374557365723336653937653566652D393235622D346230352D393939312D3138643562656132303863664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65646264646463652D383132632D343265342D613665612D323737366231346232643565B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzMwMzA2MzMyNjEzMDYyMzYyRDYyNjQzMDM5MkQzNDM2NjQ2NDJEMzgzNTM0NjMyRDMwMzk2NjY1MzYzMDM3NjYzMzMwNjEzOTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzMzNTYyNjQ2MTM0NjIzOTJEMzE2NjM1NjUyRDM0MzAzNjYyMkQ2MjY0Mzk2MjJEMzczMTMwMzk2NTYzMzIzOTMwMzg2NjYxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzMzY2NTM5Mzc2NTM1NjY2NTJEMzkzMjM1NjIyRDM0NjIzMDM1MkQzOTM5MzkzMTJEMzEzODY0MzU2MjY1NjEzMjMwMzg2MzY2NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTY0NjI2NDY0NjQ2MzY1MkQzODMxMzI2MzJEMzQzMjY1MzQyRDYxMzY2NTYxMkQzMjM3MzczNjYyMzEzNDYyMzI2NDM1NjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d71c4e4d-cba0-4afc-a54a-b75665b1393f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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 \"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\": \"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 \"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\": \"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 \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337303538653561632D643135332D343439662D393866612D3763643266373230633363644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62656263356330312D333064372D343365332D623562392D626135373937366437393833004A3A74657374557365723431663035353662332D653337302D346262302D623432662D3834353839633736636632634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32303832326432642D626262642D346231342D626339332D353538316561356235353435B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124577" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" + ], + "request-id": [ + "048cf49b-751e-4c32-bf7d-7ca6023dab85" + ], + "client-request-id": [ + "4bf5aeba-5a88-4b97-8ec8-629c5faf1d87" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Lcem0WncTobC7KoMb9QKJ0iIPkC5a5Orme-t2S0Kn5cq-dOk_LM6dVEhsTztOTvhHkP2HJkD2mEegHt9bF8UrTe5Ki7KkN8WWLO87OOgtNjoNZqChVPW7KcX_Iiz-1Cc.h8qSfmHd_myVFKv6Bq60Xc8pF-t8bAip4V9NiOu6XMA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1934708" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337303538653561632D643135332D343439662D393866612D3763643266373230633363644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62656263356330312D333064372D343365332D623562392D626135373937366437393833004A3A74657374557365723431663035353662332D653337302D346262302D623432662D3834353839633736636632634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32303832326432642D626262642D346231342D626339332D353538316561356235353435B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzM3MzAzNTM4NjUzNTYxNjMyRDY0MzEzNTMzMkQzNDM0Mzk2NjJEMzkzODY2NjEyRDM3NjM2NDMyNjYzNzMyMzA2MzMzNjM2NDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2NTYyNjMzNTYzMzAzMTJEMzMzMDY0MzcyRDM0MzM2NTMzMkQ2MjM1NjIzOTJENjI2MTM1MzczOTM3MzY2NDM3MzkzODMzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0MzE2NjMwMzUzNTM2NjIzMzJENjUzMzM3MzAyRDM0NjI2MjMwMkQ2MjM0MzI2NjJEMzgzNDM1MzgzOTYzMzczNjYzNjYzMjYzNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjMwMzgzMjMyNjQzMjY0MkQ2MjYyNjI2NDJEMzQ2MjMxMzQyRDYyNjMzOTMzMkQzNTM1MzgzMTY1NjEzNTYyMzUzNTM0MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c882fa94-4f04-41a3-be7f-a7d4da91ad63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723432303664353138322D626534662D343465392D393737612D6638663062393466383030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39343836343864632D356462302D343239632D613238372D366165333462346165376462004A3A74657374557365723461663638373535312D396266652D343734662D396331352D6538643337316561353632644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34656439613362332D343736362D346661652D616664612D366437383062616134343930B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124689" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "gkzsLeMnNX5MBrbEJaZ8vPZibER/4Ly6FEdhXhYlNVM=" + ], + "request-id": [ + "bde64455-9ff2-48c1-a80f-9d315ef8cde6" + ], + "client-request-id": [ + "4adbfb83-f4f2-4a63-8faa-84f9bdd40cb2" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "jw5hWMgAXsqJpOSam-FvcUU6QH_toW-RL84vaURcpKgQ2WQiGCmQ4BDIxfu2Gu1LDkTbAioRTtqOM-6kIptLrUd1du7yyUZOfnWCN5KrxYHz-_CAnpiKFSJ9txqR_ixF.xl1H9zeKeRRJ9BdanBFOX8q2UYNKyzdC8RDu9yKnT7Q" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1604192" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723432303664353138322D626534662D343465392D393737612D6638663062393466383030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39343836343864632D356462302D343239632D613238372D366165333462346165376462004A3A74657374557365723461663638373535312D396266652D343734662D396331352D6538643337316561353632644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34656439613362332D343736362D346661652D616664612D366437383062616134343930B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDMyMzAzNjY0MzUzMTM4MzIyRDYyNjUzNDY2MkQzNDM0NjUzOTJEMzkzNzM3NjEyRDY2Mzg2NjMwNjIzOTM0NjYzODMwMzAzMDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzkzNDM4MzYzNDM4NjQ2MzJEMzU2NDYyMzAyRDM0MzIzOTYzMkQ2MTMyMzgzNzJEMzY2MTY1MzMzNDYyMzQ2MTY1Mzc2NDYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0NjE2NjM2MzgzNzM1MzUzMTJEMzk2MjY2NjUyRDM0MzczNDY2MkQzOTYzMzEzNTJENjUzODY0MzMzNzMxNjU2MTM1MzYzMjY0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDY1NjQzOTYxMzM2MjMzMkQzNDM3MzYzNjJEMzQ2NjYxNjUyRDYxNjY2NDYxMkQzNjY0MzczODMwNjI2MTYxMzQzNDM5MzBCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6be07004-d5c2-45d3-b379-1e62048bcbe8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323633366266372D323964622D346439332D383738662D3430626634666165306231634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66333830343763612D376633342D343563362D383531322D653331363235663737616538004A3A74657374557365723533373162393262652D613534362D343762632D616165322D3739323764383837316633354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653731313933362D646366652D343537342D623330342D313763663362376435666364B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124577" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" + ], + "request-id": [ + "3870e6a6-630f-4332-9338-6961ae5e5dd3" + ], + "client-request-id": [ + "a24f0050-57f8-4f64-9410-6bfbd58c3a60" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "42jvi4GAJXx5BOKwuIDf2kHdYeJRhm867v8C7yS3ShFzSWXrlr71dJX4icgLZB0EZMc6_kQiTtpkLXOERrAPf-S4x7qexchMtLwD6v3qTv5vIvYHipIZjLxt_557vOLt.cMEoO8ztL8PXimslIOZHmkoLrgsz6yFLSKXaruK5HZE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2480035" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323633366266372D323964622D346439332D383738662D3430626634666165306231634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66333830343763612D376633342D343563362D383531322D653331363235663737616538004A3A74657374557365723533373162393262652D613534362D343762632D616165322D3739323764383837316633354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653731313933362D646366652D343537342D623330342D313763663362376435666364B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDYyMzIzNjMzMzY2MjY2MzcyRDMyMzk2NDYyMkQzNDY0MzkzMzJEMzgzNzM4NjYyRDM0MzA2MjY2MzQ2NjYxNjUzMDYyMzE2MzQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjYzMzM4MzAzNDM3NjM2MTJEMzc2NjMzMzQyRDM0MzU2MzM2MkQzODM1MzEzMjJENjUzMzMxMzYzMjM1NjYzNzM3NjE2NTM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1MzMzNzMxNjIzOTMyNjI2NTJENjEzNTM0MzYyRDM0Mzc2MjYzMkQ2MTYxNjUzMjJEMzczOTMyMzc2NDM4MzgzNzMxNjYzMzM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODY1MzczMTMxMzkzMzM2MkQ2NDYzNjY2NTJEMzQzNTM3MzQyRDYyMzMzMDM0MkQzMTM3NjM2NjMzNjIzNzY0MzU2NjYzNjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c282167-06b2-4ed1-8407-c4cffe610ebe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723533383862306638352D626166382D343433322D396437662D6636396464353731333032384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37626338333035612D666662652D343132392D386539352D376266336439663033396338004A3A74657374557365723563313836353239382D313839662D343337652D383234332D3339316463396564326163314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66386263666165302D643930312D343431372D393735662D356465323339373536363838B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124697" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" + ], + "request-id": [ + "8bfab0a4-3eff-480e-ada1-7dc15e846b64" + ], + "client-request-id": [ + "0216a37e-fb81-4812-8f77-92ab7007454d" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "t_mfXEFTBvt7_vj1j4jWkKvkMk3SooK70UBfbe8trn1N9eeMJlJ15SonuFrA0wbPqKqDvbQsNQltMqPaXef65u6E2-h-TIRJIEKJHBxDunNYX29LUcZE4PRRiAaZQ-Rw.D6uo-AXM_FAgcHwabpuGDLoQ19SlGJv9vLSV-ev3tMk" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1289848" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723533383862306638352D626166382D343433322D396437662D6636396464353731333032384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37626338333035612D666662652D343132392D386539352D376266336439663033396338004A3A74657374557365723563313836353239382D313839662D343337652D383234332D3339316463396564326163314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66386263666165302D643930312D343431372D393735662D356465323339373536363838B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTMzMzgzODYyMzA2NjM4MzUyRDYyNjE2NjM4MkQzNDM0MzMzMjJEMzk2NDM3NjYyRDY2MzYzOTY0NjQzNTM3MzEzMzMwMzIzODQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzc2MjYzMzgzMzMwMzU2MTJENjY2NjYyNjUyRDM0MzEzMjM5MkQzODY1MzkzNTJEMzc2MjY2MzM2NDM5NjYzMDMzMzk2MzM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1NjMzMTM4MzYzNTMyMzkzODJEMzEzODM5NjYyRDM0MzMzNzY1MkQzODMyMzQzMzJEMzMzOTMxNjQ2MzM5NjU2NDMyNjE2MzMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NjM4NjI2MzY2NjE2NTMwMkQ2NDM5MzAzMTJEMzQzNDMxMzcyRDM5MzczNTY2MkQzNTY0NjUzMjMzMzkzNzM1MzYzNjM4MzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3e6d2ef-2649-4750-867f-b72868a995da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563326632306435352D353330382D346663322D616139392D3034653961646235393862614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65353631333861392D363830642D343138392D396661322D663134306438333139613639004A3A74657374557365723635323637386536632D316230372D343864382D393839332D3963343238393762393434354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30656362623861302D376563632D343534662D383137382D393633626265656235336534B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124569" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + ], + "request-id": [ + "801805ec-73cf-478b-a3cd-2d6aa0a65b38" + ], + "client-request-id": [ + "b938c278-1559-4255-9474-e0d164682429" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "ppCpKIZ3gf8Y_m02mi-BjbCHJwJmuCtcVYUUXqcxxoOZJNykRP5X7Irahz-ucXWNxSqLPZ1mILh1Pt20mWhjAZp4Sa3skC3klOrLu0aZGhtQ_pmruGEo_gDIj9xsv4fB.OkfKTQHWr6r5XAMhXtycnKpvhuoVDtWWFUUkuEvuLoQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2258892" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563326632306435352D353330382D346663322D616139392D3034653961646235393862614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65353631333861392D363830642D343138392D396661322D663134306438333139613639004A3A74657374557365723635323637386536632D316230372D343864382D393839332D3963343238393762393434354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30656362623861302D376563632D343534662D383137382D393633626265656235336534B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTYzMzI2NjMyMzA2NDM1MzUyRDM1MzMzMDM4MkQzNDY2NjMzMjJENjE2MTM5MzkyRDMwMzQ2NTM5NjE2NDYyMzUzOTM4NjI2MTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjUzNTM2MzEzMzM4NjEzOTJEMzYzODMwNjQyRDM0MzEzODM5MkQzOTY2NjEzMjJENjYzMTM0MzA2NDM4MzMzMTM5NjEzNjM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzUzMjM2MzczODY1MzY2MzJEMzE2MjMwMzcyRDM0Mzg2NDM4MkQzOTM4MzkzMzJEMzk2MzM0MzIzODM5Mzc2MjM5MzQzNDM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDY1NjM2MjYyMzg2MTMwMkQzNzY1NjM2MzJEMzQzNTM0NjYyRDM4MzEzNzM4MkQzOTM2MzM2MjYyNjU2NTYyMzUzMzY1MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cba486f2-9172-45e0-b4d5-8836e33a03ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723635333235633830622D313135662D343934612D613064342D3538326362326632646563644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32623237623237652D653961392D346336352D393633372D633765333662323935393535004A3A74657374557365723665366430636237312D333162652D346364662D386337622D3763356338326237386236374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38623735613138612D633739332D343665352D396631392D363433376334323564383165B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124685" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + ], + "request-id": [ + "91faefe5-ef56-4935-9dcd-544f83b72a7c" + ], + "client-request-id": [ + "f6baac83-4669-41b5-bb7a-9dafb83f1c28" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "sTuvxWlkU1aPcONeYd8buUWY9FBKXcpJS8lRr-FsFxYHLsghXPvOM-v7ngbiAuag_ic0ig0Z98vVwyqEN9jg44hf_JK26CDmcfiFF-dNV91JnY7lhxDiEBXYYE--F1Og.RmNNyi_Wbvnc0BOR-5SLjgJwDA-S3I0P7hdGzYnjYXQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1105713" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723635333235633830622D313135662D343934612D613064342D3538326362326632646563644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32623237623237652D653961392D346336352D393633372D633765333662323935393535004A3A74657374557365723665366430636237312D333162652D346364662D386337622D3763356338326237386236374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38623735613138612D633739332D343665352D396631392D363433376334323564383165B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjM1MzMzMjM1NjMzODMwNjIyRDMxMzEzNTY2MkQzNDM5MzQ2MTJENjEzMDY0MzQyRDM1MzgzMjYzNjIzMjY2MzI2NDY1NjM2NDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzI2MjMyMzc2MjMyMzc2NTJENjUzOTYxMzkyRDM0NjMzNjM1MkQzOTM2MzMzNzJENjMzNzY1MzMzNjYyMzIzOTM1MzkzNTM1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2NjUzNjY0MzA2MzYyMzczMTJEMzMzMTYyNjUyRDM0NjM2NDY2MkQzODYzMzc2MjJEMzc2MzM1NjMzODMyNjIzNzM4NjIzNjM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODYyMzczNTYxMzEzODYxMkQ2MzM3MzkzMzJEMzQzNjY1MzUyRDM5NjYzMTM5MkQzNjM0MzMzNzYzMzQzMjM1NjQzODMxNjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40c20075-6641-4ac0-adf0-0f38caed50ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723665623131366166352D383664612D343963392D393536322D3031633730626463383330634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61323333336238342D636438632D346163322D383438652D343461663738626363386637004A3A74657374557365723737663635326566372D303336322D343566332D626634662D6561656166353933643263304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646136633361342D393139382D343438652D616339302D363262613537336339306437B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124577" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + ], + "request-id": [ + "bf3f397c-ed64-49ee-be6b-573a70ec5f4f" + ], + "client-request-id": [ + "b4793714-fccf-4902-9413-0d930b87d60a" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "8QdlEgqf2BFw-sCDh2D7OwD8vX0KPvd0UYd3te01XY08_0hVk9x5PJf0JoJ6Rmc_aLqjMyebyGHvb3cO1ctnavx4cUi2aVMDiwMk6GvBPnN7dXYoXIhnK3rEg730Z1BY.ebVFgrHbp900fHgZuoJso-HEaSUUyDZ0kDaz1YuSKTI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1334501" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723665623131366166352D383664612D343963392D393536322D3031633730626463383330634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61323333336238342D636438632D346163322D383438652D343461663738626363386637004A3A74657374557365723737663635326566372D303336322D343566332D626634662D6561656166353933643263304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646136633361342D393139382D343438652D616339302D363262613537336339306437B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjY1NjIzMTMxMzY2MTY2MzUyRDM4MzY2NDYxMkQzNDM5NjMzOTJEMzkzNTM2MzIyRDMwMzE2MzM3MzA2MjY0NjMzODMzMzA2MzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjEzMjMzMzMzMzYyMzgzNDJENjM2NDM4NjMyRDM0NjE2MzMyMkQzODM0Mzg2NTJEMzQzNDYxNjYzNzM4NjI2MzYzMzg2NjM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3Mzc2NjM2MzUzMjY1NjYzNzJEMzAzMzM2MzIyRDM0MzU2NjMzMkQ2MjY2MzQ2NjJENjU2MTY1NjE2NjM1MzkzMzY0MzI2MzMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDY0NjEzNjYzMzM2MTM0MkQzOTMxMzkzODJEMzQzNDM4NjUyRDYxNjMzOTMwMkQzNjMyNjI2MTM1MzczMzYzMzkzMDY0MzdCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b84e4a6-c55c-48ad-9d3d-09e5dea67790" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723738313064653237302D613837622D343734652D626137372D3632653236666132646561394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37373363633236302D636163612D346564622D616639392D313430326138333034353765004A3A74657374557365723830373562316363642D313736342D343239312D396635622D6366666335653032623235624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31323862376431642D393063352D343139382D396336302D353166333639303037353634B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124573" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" + ], + "request-id": [ + "ab2ea5fd-a37f-440c-8a14-621b9fb23a01" + ], + "client-request-id": [ + "04fe92e0-18f7-4422-a69b-e465b0a1bd9f" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "zSB6F4aFCzQDS2Wd3RIq5sm270EoUQUHZw3fqhQ8kxseT37tcxW4vnbaM2AVlL10IlP1jGbnIkTFZi5Dfd_XW6gqM272SO9V5S4khyEjacVSFpyQmQnQW10bxzLF-MuJ.QleHJ-5LHWRgNK7LdFIyjOz6xlQ-DmDeonQxaJtS3eU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2696010" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723738313064653237302D613837622D343734652D626137372D3632653236666132646561394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37373363633236302D636163612D346564622D616639392D313430326138333034353765004A3A74657374557365723830373562316363642D313736342D343239312D396635622D6366666335653032623235624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31323862376431642D393063352D343139382D396336302D353166333639303037353634B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzM4MzEzMDY0NjUzMjM3MzAyRDYxMzgzNzYyMkQzNDM3MzQ2NTJENjI2MTM3MzcyRDM2MzI2NTMyMzY2NjYxMzI2NDY1NjEzOTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNzMzNjM2MzMyMzYzMDJENjM2MTYzNjEyRDM0NjU2NDYyMkQ2MTY2MzkzOTJEMzEzNDMwMzI2MTM4MzMzMDM0MzUzNzY1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4MzAzNzM1NjIzMTYzNjM2NDJEMzEzNzM2MzQyRDM0MzIzOTMxMkQzOTY2MzU2MjJENjM2NjY2NjMzNTY1MzAzMjYyMzIzNTYyNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTMyMzg2MjM3NjQzMTY0MkQzOTMwNjMzNTJEMzQzMTM5MzgyRDM5NjMzNjMwMkQzNTMxNjYzMzM2MzkzMDMwMzczNTM2MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2110c2f8-dd27-4972-840e-0bfadd99778b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723830383463623639372D653434382D346565312D393332622D3535393236316232633062654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31396163356165312D666461342D346464302D613833362D303837333431393236323164004A3A74657374557365723861353364376363372D396535612D343732652D393738382D3963313639333538316630344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36616139346530622D666561362D346638632D393438612D303433323964376433386263B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124677" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" + ], + "request-id": [ + "3131be56-cdd6-4b61-b01e-a4b7ee098215" + ], + "client-request-id": [ + "c5c1ba5f-9cc4-4ff5-81c9-6b0e824c163e" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "j6UkGncxEzQCiMTtVzxjahHena-Zi9mS1ocxTP8y8tUl0TwfqB76BXAofMmDZvyGvYdYHtO29Gb6xU4Cz1aF3klwNtu-bheSUyJZMGuyxf85dJbMAZkDDCGmdo31mz4_.Jlu1OmEPKlom7wCvLxrkp9j8qdQ-3dla-lYN0BqYS7Q" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2066827" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723830383463623639372D653434382D346565312D393332622D3535393236316232633062654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31396163356165312D666461342D346464302D613833362D303837333431393236323164004A3A74657374557365723861353364376363372D396535612D343732652D393738382D3963313639333538316630344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36616139346530622D666561362D346638632D393438612D303433323964376433386263B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODMwMzgzNDYzNjIzNjM5MzcyRDY1MzQzNDM4MkQzNDY1NjUzMTJEMzkzMzMyNjIyRDM1MzUzOTMyMzYzMTYyMzI2MzMwNjI2NTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzEzOTYxNjMzNTYxNjUzMTJENjY2NDYxMzQyRDM0NjQ2NDMwMkQ2MTM4MzMzNjJEMzAzODM3MzMzNDMxMzkzMjM2MzIzMTY0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4NjEzNTMzNjQzNzYzNjMzNzJEMzk2NTM1NjEyRDM0MzczMjY1MkQzOTM3MzgzODJEMzk2MzMxMzYzOTMzMzUzODMxNjYzMDM0NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjYxNjEzOTM0NjUzMDYyMkQ2NjY1NjEzNjJEMzQ2NjM4NjMyRDM5MzQzODYxMkQzMDM0MzMzMjM5NjQzNzY0MzMzODYyNjNCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "893dcc42-aed3-4cc7-8dba-288130676fd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723861383661366530332D663165312D343731652D396665662D3334356231613061313233324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39393165313132652D306537312D343166362D613134322D303461396531393663656463004A3A74657374557365723932333737636132612D373936632D343533342D613964362D3338336563633232316666664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32353830626633612D623132642D346136612D383263652D333337613065336237613439B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124585" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + ], + "request-id": [ + "fb628720-6ec7-424f-a7d2-f43830f629d4" + ], + "client-request-id": [ + "ababe75a-a210-414d-870a-298e7e588f8b" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "WIrpDE4k3vBpDr6bWjiKgrjVG7wyInQTxoKBfKh-StU6Z0xmCBwtmsTQvn7aSz-cImZa9JcBNwhQxO6bvorhgNAJM8PtwMI4hGAOCsjCv7JGjdfbadOB1PTmZHslxrfg.4X9NTXB7cWJcGtCMnz-pRSaY1oEC2K2FCWayXK4-BIM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1296431" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723861383661366530332D663165312D343731652D396665662D3334356231613061313233324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39393165313132652D306537312D343166362D613134322D303461396531393663656463004A3A74657374557365723932333737636132612D373936632D343533342D613964362D3338336563633232316666664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32353830626633612D623132642D346136612D383263652D333337613065336237613439B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODYxMzgzNjYxMzY2NTMwMzMyRDY2MzE2NTMxMkQzNDM3MzE2NTJEMzk2NjY1NjYyRDMzMzQzNTYyMzE2MTMwNjEzMTMyMzMzMjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzkzOTMxNjUzMTMxMzI2NTJEMzA2NTM3MzEyRDM0MzE2NjM2MkQ2MTMxMzQzMjJEMzAzNDYxMzk2NTMxMzkzNjYzNjU2NDYzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5MzIzMzM3Mzc2MzYxMzI2MTJEMzczOTM2NjMyRDM0MzUzMzM0MkQ2MTM5NjQzNjJEMzMzODMzNjU2MzYzMzIzMjMxNjY2NjY2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjM1MzgzMDYyNjYzMzYxMkQ2MjMxMzI2NDJEMzQ2MTM2NjEyRDM4MzI2MzY1MkQzMzMzMzc2MTMwNjUzMzYyMzc2MTM0MzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73b23cd4-f1b6-469b-ba01-958ad6479f94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723932353336323364632D303034372D346439662D626231342D3830313335303663313836364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30363066346136652D306134302D343065392D626430302D336436346331616630343730004A3A74657374557365723962313931396534642D623034382D346134372D626335332D3537623434343666633366354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34396333656537352D363463612D343731662D613638612D343930636139616434666631B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124689" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=" + ], + "request-id": [ + "07e1db35-d941-4ea3-a253-4094a152f881" + ], + "client-request-id": [ + "e0e5d384-dc7d-416f-a07f-cec14d3255e2" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "muw7DrAcWCZvCaXFzcktIUx5hWoTfpWEtGlwYBz12XxXXpwfStverEWRA1u_ekI0oUKu_qqsh22xJycPds0_jUko1BLdKHyM-5RN56m8y4ynWclqUVm0qv_4DNNU5Z0X.FTr6bv8gaEQtwE6UhzMeGfKBChBZz4ybBSya1u-j5Ek" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1466120" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723932353336323364632D303034372D346439662D626231342D3830313335303663313836364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30363066346136652D306134302D343065392D626430302D336436346331616630343730004A3A74657374557365723962313931396534642D623034382D346134372D626335332D3537623434343666633366354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34396333656537352D363463612D343731662D613638612D343930636139616434666631B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzOTMyMzUzMzM2MzIzMzY0NjMyRDMwMzAzNDM3MkQzNDY0Mzk2NjJENjI2MjMxMzQyRDM4MzAzMTMzMzUzMDM2NjMzMTM4MzYzNjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzAzNjMwNjYzNDYxMzY2NTJEMzA2MTM0MzAyRDM0MzA2NTM5MkQ2MjY0MzAzMDJEMzM2NDM2MzQ2MzMxNjE2NjMwMzQzNzMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5NjIzMTM5MzEzOTY1MzQ2NDJENjIzMDM0MzgyRDM0NjEzNDM3MkQ2MjYzMzUzMzJEMzUzNzYyMzQzNDM0MzY2NjYzMzM2NjM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDM5NjMzMzY1NjUzNzM1MkQzNjM0NjM2MTJEMzQzNzMxNjYyRDYxMzYzODYxMkQzNDM5MzA2MzYxMzk2MTY0MzQ2NjY2MzFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b659c7ce-1c7b-4d50-8fab-22da5b22d7dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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}", + "ResponseHeaders": { + "Content-Length": [ + "89387" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + ], + "request-id": [ + "6ffcc9bf-e7a5-4bbe-aab7-511c3124e625" + ], + "client-request-id": [ + "abc3c2f2-6b64-44b6-956b-2d3f77f9c244" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "7dGLsXNPrX_vmlicRwlDA9pxHT0Il8A8R7goTQb254eu_FkW5Yjx8P1A-6pEs67Z6ozFK6_tQ_KrK0lr4XA11VBD4Dl309Oo6cAluc_OCsnp67-Wkkxjz-iPvEDwV_u9.jr9H5iB6-6Je6CVt1HYOBTrOdQWwNXSAob2P8ieei-A" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "981362" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/tenants?api-version=2016-06-01", + "EncodedRequestUri": "L3RlbmFudHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89f702ec-9f67-4214-9aa1-d8e91bbb1ce2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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": [ + "14990" + ], + "x-ms-request-id": [ + "392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + ], + "x-ms-correlation-request-id": [ + "392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200108Z:392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "261cc3da-0b11-4eb0-8597-0f1043a4fbfd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14989" + ], + "x-ms-request-id": [ + "bae7acab-d328-448c-b771-ffe07cfbfeec" + ], + "x-ms-correlation-request-id": [ + "bae7acab-d328-448c-b771-ffe07cfbfeec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200109Z:bae7acab-d328-448c-b771-ffe07cfbfeec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99dee144-368c-4428-8efa-679144b83eba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14988" + ], + "x-ms-request-id": [ + "afe7f820-51fd-466c-bbef-df0128e18a01" + ], + "x-ms-correlation-request-id": [ + "afe7f820-51fd-466c-bbef-df0128e18a01" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200109Z:afe7f820-51fd-466c-bbef-df0128e18a01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8508fdd5-4445-4059-a661-a33c035c08be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14987" + ], + "x-ms-request-id": [ + "3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + ], + "x-ms-correlation-request-id": [ + "3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200109Z:3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05093115-1320-448d-8d6e-2f1706dc7cf0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14986" + ], + "x-ms-request-id": [ + "473fb41a-998c-47fb-8529-5d062959b2e9" + ], + "x-ms-correlation-request-id": [ + "473fb41a-998c-47fb-8529-5d062959b2e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200109Z:473fb41a-998c-47fb-8529-5d062959b2e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 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": [ + "dcaa0629-30f5-47e7-9818-315cef8d54e8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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/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/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/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/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/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/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/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/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": [ + "72628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "829a5346-f09c-444e-b0d3-81c169584a62" + ], + "x-ms-correlation-request-id": [ + "829a5346-f09c-444e-b0d3-81c169584a62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200109Z:829a5346-f09c-444e-b0d3-81c169584a62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'CustomRole%20Tests%20Role'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b21Sb2xlJTIwVGVzdHMlMjBSb2xlJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97a5da99-fd2e-44b3-a934-6eaaa51706a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "714" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59eb5318-223d-4aed-bb9c-dc5addeb8b75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "7553710f-342b-412a-b9ea-4e1195f69587" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200110Z:7553710f-342b-412a-b9ea-4e1195f69587" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 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/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'CustomRole%20Tests%20Role'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b21Sb2xlJTIwVGVzdHMlMjBSb2xlJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c42a8a9-afee-4a59-a4d7-f3bcfdfe9da4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "714" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f777c811-5036-485f-9fc1-f6c293fea015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f9b4a637-449c-4370-85cc-d08927535494" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200110Z:f9b4a637-449c-4370-85cc-d08927535494" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:09 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/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ], + "x-ms-client-request-id": [ + "588e9591-c39c-4215-bdc3-31d7413983d3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:10.6414814Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:10.6414814Z\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "686" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cee1f16b-ef77-4489-9a04-d7270c16ad7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fe8116b0-09c4-47ff-b5fe-00bcce76b0cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200113Z:fe8116b0-09c4-47ff-b5fe-00bcce76b0cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:12 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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a3075a-b4dd-40c3-b8cb-2bdfab5a05fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "702" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2834644f-7867-47c0-b53c-c726e330b57a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "6ba48bec-2001-40a5-981f-efb707f69bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200113Z:6ba48bec-2001-40a5-981f-efb707f69bc8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:12 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/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "734f0885-bfdd-4e36-b7ba-12d654b8b479" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "702" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a7391f68-30cc-44bd-afc7-53beedff4074" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "79817c13-478c-49f5-ab11-2bb1da15f316" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200117Z:79817c13-478c-49f5-ab11-2bb1da15f316" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:16 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 \"45356bf6-c813-4488-b163-e00edf1d1a50\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ], + "x-ms-client-request-id": [ + "3843ffb2-2850-437b-bac5-4ef55ec1941e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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}", + "ResponseHeaders": { + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" + ], + "request-id": [ + "39e400ab-92f6-4955-9703-c588c7a7c5eb" + ], + "client-request-id": [ + "467b6aa6-4033-48e6-815d-0a73714625de" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "3345TLI4ff1ARDsTS_S2GSnumOP0F4rQY4qbqlMl8PABX6QEyMTTmI_Gb56Rn3jvim_o6Vcb7_Ho3u3kkb-eUac6xN6iCfqHicdttW8eNvb_SoRGx4_4D8eZM5ohRm-Y.iWV1slH3CGlat6iP3sBDo2oR1Wa-1S4uIlZTdQMzZOs" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "754754" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:12 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 \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\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": [ + "2771" + ], + "x-ms-client-request-id": [ + "13c8c43b-13cd-4393-af8c-2c8cdb78140f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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.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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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.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.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\": \"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\": \"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\": \"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}", + "ResponseHeaders": { + "Content-Length": [ + "34993" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + ], + "request-id": [ + "564cdf8d-dee9-4f9f-82d0-49edd06aaf5d" + ], + "client-request-id": [ + "6f73c325-4319-4bd7-ad7c-d7f43145064d" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "0qt88JmCH3PR2lWB4kQOgOo6aO9_CiI7nemLA3VH3HxUwv_n0jATd87Wml0CG1BN_fdfYpPcAiqYZBNj_v1t-DY2OU5TkMXdScohasGNTr0UBCereyKQTHapl3FZPJoy.IZ756BriRRs6k9xT0hi3ABoLSa_qghGPxajwDiyScYM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1398784" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:14 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 \"45356bf6-c813-4488-b163-e00edf1d1a50\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ], + "x-ms-client-request-id": [ + "1b4569bb-4a6d-4dd1-ac6a-5106aa11dd31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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\": \"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}", + "ResponseHeaders": { + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" + ], + "request-id": [ + "88b73367-5361-4365-9011-56d098a5000b" + ], + "client-request-id": [ + "ea406cdc-b138-4e15-a286-3c7c2741efcf" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "b-8gdNYZwI8BItPFltRswKOU12rDUqeLTMj92W86SfYzOqEJImFrD_8nFuZW3UcOQP38B-7piTfJWjCEnnIdqyCAtenps8M-8u-A_Xe3noWWTM39FNAQkY2NqPzMCtNh.OwE4OTgirrUPweDotAEAeVHoZkNOvcY1xfp_l6MVxzs" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1883242" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0209b3b-dcd8-4b3d-a048-63e9b946998f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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}", + "ResponseHeaders": { + "Content-Length": [ + "42317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0123fc8b-faae-4a83-bf1c-9d0952e167c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "74a93c19-f94c-4e99-9945-ca105ee97f15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200113Z:74a93c19-f94c-4e99-9945-ca105ee97f15" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:12 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2265d61-540c-40b1-bb8e-7acb9953fe86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ + "128313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "68117064-50f3-4f44-b681-c6460231dc2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "ed962a64-a0cd-47a9-a33b-56ddadcc6b7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200114Z:ed962a64-a0cd-47a9-a33b-56ddadcc6b7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:14 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'45356bf6-c813-4488-b163-e00edf1d1a50'&api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzQ1MzU2YmY2LWM4MTMtNDQ4OC1iMTYzLWUwMGVkZjFkMWE1MCcmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a533f83-2464-418b-84ad-dbb4462ddc89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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}", + "ResponseHeaders": { + "Content-Length": [ + "732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b7c40b1-e9c0-4d61-a2a8-d350701f53bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "b2243214-a6ef-4cf5-a095-a5be366359d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200115Z:b2243214-a6ef-4cf5-a095-a5be366359d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:14 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'45356bf6-c813-4488-b163-e00edf1d1a50'&api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzQ1MzU2YmY2LWM4MTMtNDQ4OC1iMTYzLWUwMGVkZjFkMWE1MCcmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09f4391c-e7a5-4878-8a9f-43196cf543bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9a98a60-8cc8-4127-97d8-2c60ad40eba8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "6abcd749-779a-4005-961e-b8458b44bbee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200119Z:6abcd749-779a-4005-961e-b8458b44bbee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:18 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef74b422-1f57-41d9-8eef-d8e956927fbf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ + "128313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb299503-d569-4577-b718-f9342b89a88f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "5d06aa4a-c0ab-4f6b-a412-9613b118a4fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200115Z:5d06aa4a-c0ab-4f6b-a412-9613b118a4fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:14 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9509e0d-2e0f-49c9-8070-b926c067a709" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ + "128313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0761bf0-f82d-4ef0-b783-012c797fd763" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "29b5f7f9-3bd7-4c2e-90b8-4ffba97df487" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200119Z:29b5f7f9-3bd7-4c2e-90b8-4ffba97df487" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:18 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/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79582cad-1623-4fb1-9dee-7802aed32126" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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}", + "ResponseHeaders": { + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50363e55-f719-403d-a90e-0ac513d97e5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9f84d6cf-2fda-45f4-be56-8613dd6b86e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200117Z:9f84d6cf-2fda-45f4-be56-8613dd6b86e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:16 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/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b9407b6-c415-452c-961a-327c913f506e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "702" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b07974d4-6bb8-45c9-956e-06457a91c0bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9b686789-ea75-4c43-9cc8-895113953e69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T200118Z:9b686789-ea75-4c43-9cc8-895113953e69" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:01:17 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/RaValidateInputParameters.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaValidateInputParameters.json index 9e83dcaa54..cb08f1111e 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": [ - "fb2f8c95-86e6-48cd-81da-f2aea682a176" + "518a004e-9e80-47f7-b3df-d917a84b2eca" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kpTVY9vhytH2Y1JxyUkph+h7pjb7c5rbFUPU3WdgiQ0=" + "MCIqkXh8dsIa04Dr+EtELDu26kRqrT5smoGvnFozY3U=" ], "request-id": [ - "70df93bf-dc66-4d25-8916-3edbb178b696" + "71373d13-a255-4446-a140-ebf01c68adce" ], "client-request-id": [ - "67c074e0-6681-46eb-867d-41fe86b25b27" + "d1a25f89-1d8d-4188-9500-65bf1c4592fe" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lLJnTRRUvA5JoDqcXCVyT-zCsHAYnPhopNE1DDCMBiLqwVeb7byKZPO0DeIKZgN9wkV5vCQ0mgKE-vSLR317sc9dTEiNB_bOWu5jtmOh5ArOdlP8b1Uff3Av6XtTQHeY.TDAcEYrCC7bBT8-gm30_QplSoODftkFg2jA-Ko_QXXk" + "rEMgSI6k_huJmY0rbxtBZqLU7IqYW08KfrjjxZbtujWPIxYj3MallqnzABjwXRb_Icazj-ndc2MRNcYRoxjFMCx5v5ywSDtmb_Z4Ge6ZOi4ofmu_WJ0b5hAGJQZp67cu.BjAVTXK2OaONhzLf4py9IhW9nH_FWL_nHHo0VtQR0L8" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "2023344" + "989768" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:40 GMT" + "Wed, 01 Nov 2017 20:15:55 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fcd7cee-cc33-4516-ad29-c41a6cbb0fa2" + "4b4b6c52-a80b-4699-8b63-6f6cc5e4055a" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=" ], "request-id": [ - "1e820e3b-2fb3-4225-baf2-5f02105c0fc9" + "90947767-82f7-48b3-ab94-9e8000db009f" ], "client-request-id": [ - "d2ed52d7-2236-4fe6-937d-1325f61f6151" + "b6bd515e-c88d-4bf1-b5c9-e86cc7fed744" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yw7Cr1E--r4OBlzfr1gkWiEufnGiXqvTZ4dq5hP69_UnU0c29L4CwpcaZtzx5QalwTlTrlEwVx8uQLFRTKLx_1Y1BFdMU6EJ3bSo4HCvU__5M9tHKptEPSY7qOO7UovX.qiZjIN3L9UmzPwumqk5ptSMi6bw7hiUAoJggxaisBOA" + "aAgAtZBXekUNg8P3Pipgi1QTGoqvt0e9DETWQSRClH0IklV9J8i8XPXVWy7hor6xa52abeGBdMk8wFUrWQIPZ7w6ZAvj4u3JozPqTjMIhhRRpq59iuSjOnMpghDkD3_y.PLNnj_Z-nvht-pMUWpO-7eRYoM67V4l6CXGlNpJ62Hg" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1238124" + "909111" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:40 GMT" + "Wed, 01 Nov 2017 20:15:56 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a26356d-8700-4458-bc00-6495285a233c" + "f255707e-8974-40a4-b944-e054bc6e213d" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" ], "request-id": [ - "d4517cc7-30af-4357-a6df-19b0d51b1c7f" + "0cab81a4-7b7d-4529-a247-62a5d402e4a2" ], "client-request-id": [ - "5b68318b-12c3-4bae-966a-9cc766162268" + "9bb3fbcd-9305-414b-bfb4-04de27b909a5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "84qJhhicSi_HYCfUQ7fkfJC0Nnvo4qx2wL6IP3MG_7Z2thLQRkKCBZuosrtc1KpBC3_V4UfwRyZRFYhDart1qO8bK-c9n7cv8w4e4_EExQnlWPSQ6zC_Kch6E5aJT1UW.NWS1S7k8yvrYdx41shxUS5TLz5jzJwA0mXBFQZRq1fM" + "pXM6JNtjBgMONYdXZpiWxPBLZadZ2JT-UDNcduDz1qK3FLhpmicRFv7_NtW8DqkNpIoi6qz_zRN4vXWZzvIoi-tOdM4u1ksPgxMi9T1FJrHjO2D1zXi0b8pmDzu-erOS.JorQcIK__edQ_NzhLy0I71ZWaUTEs3dDbeVkmplXHtI" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "982709" + "2585851" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:40 GMT" + "Wed, 01 Nov 2017 20:15:56 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d16ee56-dbcf-4ed8-b0da-5d705c12d686" + "fd25dbb2-f405-48cc-b56f-baf23b97efd0" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "84c32dcc-d75a-4ef0-b00a-8cab63195de1" + "f6117a5e-3e91-4098-8629-185ebc052c4a" ], "client-request-id": [ - "cb637443-7bd9-4a5f-97d5-a41b5489c769" + "22a446da-48d6-4af4-8e92-f9292c726084" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "vhLWCk_SxdAeAnQAtTah3W-k9JRASWA9IG56hJVNcWUmIvWxWYmp6163tcTr2nGceBnCPaUfkDY99QqwAIynzRtVCOzdLEGihaIVtWIFYz-voaIIAo1qG4ZdfOhPyAM2.J2qKp4Sfg7L5G7hZ03ioP9oduvojr2czFZwSmCIPFIY" + "V4yRl4K3W46ahXXOgCN7xAAOgwEgJOYvfg6QA_Em2yCSgF11f2Z5ch_dzFz2oFox4uPuERxC-Qf-dev2bXwFLchlyWUqkMA5UmJ3X7vQbKY1cPewYoHyj52oEXXI98ot.i9yibwXyoqGXgjxfiYfxOGZtSnPzg-lay8U4wuH1eyc" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1229269" + "2950725" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:40 GMT" + "Wed, 01 Nov 2017 20:15:56 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d6d1af0-e075-44aa-927f-a0f99c18a1e5" + "a4ba0437-43b8-42f9-9754-3414b43bd571" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" ], "request-id": [ - "350d9a92-57a6-4988-8cd9-90e006a5b6e5" + "b004965d-774e-4c22-8bc4-78eb69dbec9a" ], "client-request-id": [ - "7a624b54-daaa-4d64-89ec-976f31c3a272" + "1ff0f8db-16be-40cb-8d69-c2130fa3a1e0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "iES4-zv33fzp63fg5OdN8uy-DbKGkGwzwWG_0frXHuBFgtJTyMn-7cDgJB3LjUgHl0E51XxxEolBOiGP4EQtVNv_XuVNwSbASuNFr9wzbyIpawP93nJYEjZS1lVKcQpu.SmG5sV4kbZyBZ72ejC8swyAw9V--reZp3ZdfKWRICTc" + "MHHV-BUaTtIotWuuwn5apMPbH7Rvw-JOXe05nJkduoDwDL9g7ig9w7F2hjkNQlyZ5zA20dGKL8Pj26BkulhkBmmNx2GXyTPKG0zwJ5nBl7ysHmTC1kfXUeTpk6xQmOxP.GSG03osGl1JCKAf-G2-2u37u9NlU4Lw5Xr5-XalQL6o" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1093725" + "2349153" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:40 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1314f0ca-9c6c-4820-8635-ba0df1f5fce6" + "8d1b1f5e-3277-4ed3-b65a-df9fcce28a3d" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "40b1ff66-3ff6-4d90-b44b-11c66b42739c" + "e0584aab-c235-4151-b68d-e97a35f91ff0" ], "client-request-id": [ - "bbd75bb0-77bb-4c98-9fb0-b3b8676dcc38" + "7c8758fc-5db4-4006-9056-54ac1ad0770e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "bh85Qpm7LhEvoeS-DRNw9mAAkbSv0hr1vPMiGoKeudsoEM4CTc9opR2ciJI5BBRkqz0ponSERSIhSl0OFY_ZT3IpMQ6U_z2YKlcOIs7-CXx6gMYRzOLj34u_qOzbRbHr.NdG0nVBEs3oSRLXZxAQosGvtr6zaVv9lwGRqBemVaus" + "hcDD6QhGUyOVw7CR9tvHo6TaylXtFeMmR-rwYCnMsNPd3aO1IVRQDG-ne59rKxeZ8OklxEQGgAXIuU7wueSBltmIWVM0BQCGHJ3nQl3FrhFLCtTLgzok9uC8dqeMZ0nC.eZyCeW1ZigSo5C_Gd2doPqrDW1Lz-9__ijbFhyEjEK4" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1490577" + "980689" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:41 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a81e1d3-c322-414e-967a-52840fa72ca8" + "af564af1-cbaf-46fa-9752-1264b90d1caf" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UUsoRVZx52dAfTb5wv/hhWzDqbmsJKcNRViHoL4/1IY=" + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" ], "request-id": [ - "639c9e0f-adbb-41d2-8fee-e20a66a84229" + "08ef72fe-4a29-4f8a-9d20-42622473e868" ], "client-request-id": [ - "5b0ef8b5-723d-417c-b83e-6dbaf342118d" + "622a9983-fe12-4721-ae9a-1d64cea67781" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "6MxOuEAbKKii4-TU8tmJ6zlqpShsTxLgrz_uysoLU2SSeCEILWS63-x7a2eapo0WbOMMVwUiyWclb3ASQ3AxgmyFZSorAyKa6N3MKaPDjOFn800LRlNhwAd6yLVDXDHV.s-T-xaHyDoOzl8xrrZFEUm1U9Zy7j5w_UhQzVvzRpvE" + "73IhlShEcgUDpQskx579-i0Rg9ZISXbpwQ7rVVGf_So8i-sliAFBP9053YYSCvI-_og4jBlnqEgQLR4Dwz6dr8fHZsaKyl0tBnWkeq8RBGEEKoxTZwTjNhqOkTontgUN.WBPtWA4lnNgHvgJ0gzWRanZ7Hr1-sXtkl7Hgj7MNAhw" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1071632" + "1824404" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:41 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "297dc393-d362-494b-bd21-d4e68e047ac5" + "b4631c66-a0e5-423d-a0a4-cdf08e9bc3ee" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "eaf00788-f313-4ae9-8cf8-46c1ecf0aa06" + "9c7d8e22-fbb9-48ea-b5e9-0e5176450191" ], "client-request-id": [ - "c863fa7e-2166-4bdb-8ce1-6cf713ecfdc0" + "fb0ff9b1-9cc8-498e-a329-5c512e3e9f4b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "vs-0KOOziJgan1-HYlKRhOxelZdJwgEmLtuBjiEJj0bDjyMlwyaC10v2rkZPFdb2-i3VGRtrfMhKTnI0zZgwMKimelQ66jiMat0RfOz5jNmiW9PUWEMVLD-jxfwxKK6S.x8QxMjUxBdJ4s3tb8ULXq3j1nzdIbc81rtYlc8rO37w" + "gfFr7aEhebyh4Wk5Fnl6yDQUlM0e2Om45XqaOIrP8AuC5IrjUU_LtT_QcCfeJiHZWcVN8aC_wwKIExLglOxDClEBtiGQqsBRHCfKFXk2QuMspoN7ItJ4WAyWOkYgt-Lr.klHCtOkvBFfK3Vymy2rCfxILNajGTNyPhWxyDgTXCHg" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1351602" + "1348889" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:41 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cf795f9-fa27-4e15-9497-6a87b9e898e6" + "bb56ff70-0877-47f4-b0cf-6a3425fce4b4" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "f0eb511d-56d0-4893-a0b0-20c9da93c9de" + "03a90848-df6e-4261-b4e2-1866520a3479" ], "client-request-id": [ - "9614e5e6-1be3-4431-9557-acbf20f3cde5" + "e5fe33c2-6ee1-4283-a2da-064c659decc1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "s7th6bDOwSynJPe9cKCUnuidHd_4mENqNkFjaNY6PPpAZcanYNjR3ogWaVxAYbPgh0w-5EA6M52I0oegqnFeYp5bbC_5YV3tyIfILPF_JFspAzXc8mTQCdkg3lv1Pw23.w1pSJUqBovLc8BBl36_EprNmxKd34OH325SjNoiXjLQ" + "eDdufRkYjFNGk_mZkdJS_eKyg9AQOH38IuNr6LJfRSBTYFCjgSZuATKHBaq3oGY-7lVymL1IfcIYALJVavkbtt6P1w4ldrZM8c8ddAd1ihR6dqHf6X5jdbbiveJxAEnf.6lUGZ583UyA9K-ddFvkejD-rDRQKqWoa8QzGOAYPVuI" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1046586" + "1306223" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:41 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b21178d-3b35-40ec-b788-b9f86c706a88" + "25965e94-265a-47ce-93ea-1edd0bd6be0c" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" ], "request-id": [ - "8f1420c2-82b3-449d-b625-8a9662be5ecb" + "b60b2772-f224-44fb-97ac-6fef57114730" ], "client-request-id": [ - "e269ec1a-0845-4e61-a7a3-3f3a2506498e" + "8fb4c8bf-894a-4a91-ae2c-a81fce653ada" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5uwp0iAP9InfmqIdP3HaqFFKjWzqHoLVCO4mPnwNQ63bfd1pdh7d3N7X4Owj9FvD-GKQJJVZsRGbGN2AfxhOd_r8eGORtRyXbh06D-yCh2cIViQW4ZaxZD1od_hCkQcX.cCyj7oWkD4PapZ98Dfqeu00oWnh8TQOTLAAy7ScDPlM" + "vHFA73J1xv4o_CKRcc4RQuhYxb_CRyK7eQplc8wTuMZBF-hc90AzMdWPbuuLd-yIg8Y-y_uOuMuDEhLdRC6yNNc794d01pOHHuXqia54SGkv0ptvxqY8hjzANnB6Vvsy.kpuHmfAToG58pjQ5Jph5AktMAeX-l3qClCHL1v5Xrhk" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1061171" + "1158065" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:41 GMT" + "Wed, 01 Nov 2017 20:15:57 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d64e319-2950-476f-895f-c8596ac20c34" + "37cec8cd-56cd-4074-885c-a5fd41b02302" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=" ], "request-id": [ - "a78037cd-e6b9-4bdc-ae3f-773799e922fc" + "e6b78558-8260-4eb9-b440-80f1ea105d91" ], "client-request-id": [ - "98c58f8b-b606-452a-a541-6ea7ec5f3b24" + "6011b93f-439d-4de1-838f-25a7443447bb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yXwv7BrV-OzkMSVORMAK9YfKfryHc55fOKc5pOQKjHHTPdd0VOId2kLzYR_rNkegfWEwzf3nT6HPKvl4Pwtfya-L8J-fDijSt-mj84oqrsWwhiBQWEqStJzwystiuYl4.LSpXBQgJacfb6_P2pqKF_YmlxlfAIZcXvH7IyapcGgY" + "xWs4_2Ub_yQBd7bMWNGWpeT4dd15hp8E6hLuhbclnnynZ96UkKISu2R_vaSUIQK7dqMEtnwlgaPpiUyIXU_PI42IKRUugWTOK4yY6Ut-JmweQhW6hDn7c98-1kjD_D28.JLkYDHR4nRKhxf1j_9DqhYqJcI1EDOPIao_vdSlQpiQ" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1468250" + "826280" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:58 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a93373e-3eb7-49f5-8f30-c073865dcb37" + "64d178ae-35a5-47ae-9427-7140bca3cfce" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" ], "request-id": [ - "d24b5f63-fcfa-4674-bb9d-3d431810ae2e" + "7132fae3-8d85-4e92-a8fe-52df867d48ae" ], "client-request-id": [ - "e7d32770-7a4b-446a-9682-18c2c5ee40b8" + "8b85afb3-9306-4a85-b5d3-3ab41303ff46" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "9R1AFcySyycCeSK82cRHRLN_A-MlMKGOQNPwYv1yEKEOkuwM-gPL4CQmclMNLFoAN-PaetMpaVaoj8jQLhBLRANczbc23wVoOvwqQk8RXaxQNLnnO2TNqx_ToSQHIAZY.IiC1DYAJCz9txDnFHjK1EjjRyLysQxvkXWV82k22g-U" + "mOBMmUyb17bNpqmdhGhuI55lqeyP8XSqWZhsknm6HDBOyFcvsPq4JBdqFtTAm0oUkgXTFta-j482TTEXMnr9wuALbsv6uduumZLO3OnCVh2w5-09OG-q9bWQVDpi0XkG.q5SS3JPnApg2I3o1qYCdWYLESq15BWkb6XpE50vyOc0" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1126569" + "1274589" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:58 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b15a8c-8d38-4413-b696-b6ab04afb3d5" + "3c355622-e09f-4aaf-ac94-121f06ba6cf5" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "0f736792-e728-467c-8179-f91098d60adb" + "d3953e76-ef03-4490-b06b-3f393c38344e" ], "client-request-id": [ - "7e53854e-f64b-467e-9223-bef070ff645b" + "130bddac-6144-4f91-a2f3-3b25e0d7cc55" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "13_-1z03qZq4rKDJDW3JmqQKqGwTU9nwgRHWhRAlVFwqOr1OCQhYLzTbCiDcVdC_1STnzGNeWExGo8C9IFz5hsU3cSCR9xqHxB0UpmEhzVsd5RcvIlm9vHl3qYcs9_NH.FPxULAiBgnBP_2SumvDwthRCle-WXO6ec0t2jSEmEWM" + "CPCfgQhVszK1Mz9jij3DdtsqD3Bx81tpXoy6MxRTdcUUWxCIEsIaHkwbXd29Aet6iWa0mTSiU5ltYzoEULcyzIILREFY-LAolzf-DeeGa_Z0htJLKLttk-KvmufWDNIs.khGqzgtcPOu-AhDW7YbleOL1YMUPJg9nbRX2EIFpIVY" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1123634" + "951798" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:58 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a73533e-6e39-40b1-8920-8848270bbc6c" + "9d4331cf-7de5-4802-bbf4-d76a2995ce89" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" ], "request-id": [ - "61a35c7c-588e-4bbb-8613-c1be2cc5bd88" + "fd794841-bb6f-46c9-9e7b-f4aac70fe59f" ], "client-request-id": [ - "338d0962-41fd-4d4c-91e3-934f04182c48" + "6fd6a340-c9f7-4b41-b8d8-3e2e20726fc2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "QslLv2Q0jnC77DORCXdyKqZJXgbXbwL6xISva2Uw2SKZHgIxX7ZHGxA91_xdOEzSHn9ynzIoJSGceD9zG0jeuKUwA8-xhye3WqPdLUvVGp2qjZqpLAF9oeoOl3RShLkk.AMs5oUrEyHjUYFkeQjko12-kTCr5KjSDrFdXlqMsHiY" + "JUpxxJMgRtiQ3SKQhpi79Ueg1vD76DzU_2mkJaECPEteqV88m3Qo6cGsEQdixLowbF302EGS7BNXS4Ljr17XwMj8g8O9No4r9dUO5YWIhssjFBKPEcr4ZdavBZQTU_C1.1nvPh4DpR0uG8hGXCy0-nlLQjRFGya7twxKFbNwhr7Q" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "858848" + "972957" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:58 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da267c8e-f0cf-4560-84c7-8773aa5ec35b" + "a0ff9500-4a32-4747-b274-a438d13de761" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" + "DBkxAUtc39ZvuCNWglbQ4rJ9IJ8Cx3hNqz0KjpmFlzw=" ], "request-id": [ - "39b556ca-7f80-4c07-9050-1cf888936a3d" + "41e3453d-6151-490b-9afb-3594b3b175e0" ], "client-request-id": [ - "77b3fec5-d650-4069-9161-555caa35816d" + "35585514-533c-4cf7-b0ba-779c09d5ffc0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "oX21oWF4jLW9BejH6FILYpP5O6Nn0NHlGMBYO67gxj3RC1wB_Ye-u3egypwPe7t1Wu1qdY6nEcFYnk3eYlbO3D8JdAe8HagYzYu5qMVQka2dja1kH9UNq3_sbEQRS_21.15mADb3qZgrObBtdMJiwcUtfk8MQH8ls7UWqjB-TuYc" + "cm5KCh5TOOaN3rL7UPXGnRIzYy0giGoDsM7qMo9VPdkv_SFCSakvLsngYuQVCwHrWc8QF5gx1CsB_8P5UQcCprcWjTAjwgWNvtQT3mhQwE2e3f-Erh4N0D1bEhgfs8pT.yuxc3L4OFFSfONqB_wKqmIi7v_7ogb-jWPz5GJpAcOk" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1038438" + "860465" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:58 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d358e1a-e59b-46b5-99b7-326ffe10269f" + "eb580fa7-641d-4b25-a97f-fd8c05a39c59" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" + "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" ], "request-id": [ - "0aa22116-882c-4d43-9277-e6d2f6cc484d" + "2fa6333a-bfc5-4223-a2fb-c9e1b89a8b9f" ], "client-request-id": [ - "3b7889f8-06fe-4ba5-85e4-e447c268b180" + "d6d49f9e-08fe-4d15-9cdd-7455422114b1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LK-t5oFpesHxHuTVc-7wqqHZ3LfplAn177uzNORO4kXU2hvC-hXVjyFNf-RdkGmeKioWZgZtB4blEpa2uql5N0NTabH5GIamSBJWby0d97XDYSyA4nFBj4r6vQIgGZ1Q.XQOZRFD01jtutnGM_OVfJJr5H8ZAsU_TiHjWgEnVVxA" + "ygtdc9udduHI_AeW3EHzQj_8o4kvc8twvOi90I4VOp4LjzKt64fU5WvlYuuHX5c0v6AI1myzY_kyhK9I1bjnXUNBXmshhZHIlV5y3pPa5-VUjvc7AtooMSHTKr0nAqxb.I2SS-QiJUSflQ1JIUVl_2a_Ngh6q9nhcqf6jvK86eVA" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "2361732" + "3091401" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:14:42 GMT" + "Wed, 01 Nov 2017 20:15:59 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56912c3e-eeb7-4d61-abd4-1c4c47b6cd4e" + "822ecc31-0b1c-4fcf-be46-98a0a4db37f5" ], "accept-language": [ "en-US" @@ -1349,13 +1349,13 @@ "14998" ], "x-ms-request-id": [ - "6b4dab58-d37f-439c-ab64-e6edbc35baef" + "518bf188-8501-4dd0-90b0-b49a1d5a6029" ], "x-ms-correlation-request-id": [ - "6b4dab58-d37f-439c-ab64-e6edbc35baef" + "518bf188-8501-4dd0-90b0-b49a1d5a6029" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201445Z:6b4dab58-d37f-439c-ab64-e6edbc35baef" + "WESTUS2:20171101T201600Z:518bf188-8501-4dd0-90b0-b49a1d5a6029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1364,7 +1364,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" + "Wed, 01 Nov 2017 20:15:59 GMT" ] }, "StatusCode": 200 @@ -1380,16 +1380,16 @@ "PSVersion/v5.1.15063.674" ], "ParameterSetName": [ - "The list all resources parameter set." + "GetAllResources" ], "CommandName": [ "Get-AzureRmResource" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/abarg17186/providers/Microsoft.Storage/storageAccounts/azureblob01404\",\r\n \"name\": \"azureblob01404\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishstorage2/providers/Microsoft.Storage/storageAccounts/ashishteststorage2\",\r\n \"name\": \"ashishteststorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishtest/providers/Microsoft.DocumentDb/databaseAccounts/ashishwebjobtest1\",\r\n \"name\": \"ashishwebjobtest1\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.ClassicCompute/domainNames/cli-cs1798\",\r\n \"name\": \"cli-cs1798\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Compute/virtualMachines/runbook\",\r\n \"name\": \"runbook\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"kel-stu-mktp\",\r\n \"product\": \"kelverion-runbook-studio\",\r\n \"publisher\": \"kelverion\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/networkInterfaces/runbook323\",\r\n \"name\": \"runbook323\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/networkSecurityGroups/runbook-nsg\",\r\n \"name\": \"runbook-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/publicIPAddresses/runbook-ip\",\r\n \"name\": \"runbook-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/virtualNetworks/cli-cs1798-vnet\",\r\n \"name\": \"cli-cs1798-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Storage/storageAccounts/clics1798diag765\",\r\n \"name\": \"clics1798diag765\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1852/providers/Microsoft.ClassicCompute/domainNames/cli-cs1852\",\r\n \"name\": \"cli-cs1852\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2382/providers/Microsoft.ClassicCompute/domainNames/cli-cs2382\",\r\n \"name\": \"cli-cs2382\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2609/providers/Microsoft.ClassicCompute/domainNames/cli-cs2609\",\r\n \"name\": \"cli-cs2609\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs300/providers/Microsoft.ClassicCompute/domainNames/cli-cs300\",\r\n \"name\": \"cli-cs300\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3176/providers/Microsoft.ClassicCompute/domainNames/cli-cs3176\",\r\n \"name\": \"cli-cs3176\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3677/providers/Microsoft.ClassicCompute/domainNames/cli-cs3677\",\r\n \"name\": \"cli-cs3677\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3841/providers/Microsoft.ClassicCompute/domainNames/cli-cs3841\",\r\n \"name\": \"cli-cs3841\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3883/providers/Microsoft.ClassicCompute/domainNames/cli-cs3883\",\r\n \"name\": \"cli-cs3883\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs4027/providers/Microsoft.ClassicCompute/domainNames/cli-cs4027\",\r\n \"name\": \"cli-cs4027\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs550/providers/Microsoft.ClassicCompute/domainNames/cli-cs550\",\r\n \"name\": \"cli-cs550\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs7037/providers/Microsoft.ClassicCompute/domainNames/cli-cs7037\",\r\n \"name\": \"cli-cs7037\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8013/providers/Microsoft.ClassicCompute/domainNames/cli-cs8013\",\r\n \"name\": \"cli-cs8013\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8479/providers/Microsoft.ClassicCompute/domainNames/cli-cs8479\",\r\n \"name\": \"cli-cs8479\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9049/providers/Microsoft.ClassicCompute/domainNames/cli-cs9049\",\r\n \"name\": \"cli-cs9049\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9429/providers/Microsoft.ClassicCompute/domainNames/cli-cs9429\",\r\n \"name\": \"cli-cs9429\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs946/providers/Microsoft.ClassicCompute/domainNames/cli-cs946\",\r\n \"name\": \"cli-cs946\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs975/providers/Microsoft.ClassicCompute/domainNames/cli-cs975\",\r\n \"name\": \"cli-cs975\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs983/providers/Microsoft.ClassicCompute/domainNames/cli-cs983\",\r\n \"name\": \"cli-cs983\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs44004a9fdd58ex48dcxaeb\",\r\n \"name\": \"cs44004a9fdd58ex48dcxaeb\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps130\",\r\n \"name\": \"vmsscrptestps130\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Network/virtualNetworks/vnetcrptestps130\",\r\n \"name\": \"vnetcrptestps130\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Storage/storageAccounts/stocrptestps130\",\r\n \"name\": \"stocrptestps130\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/networkSecurityGroups/xplatTestNSGNic8469\",\r\n \"name\": \"xplatTestNSGNic8469\",\r\n \"type\": \"Microsoft.ClassicNetwork/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet136\",\r\n \"name\": \"CliGtTestVnet136\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet241\",\r\n \"name\": \"CliGtTestVnet241\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet2443\",\r\n \"name\": \"CliGtTestVnet2443\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliTestLocVnet9170\",\r\n \"name\": \"CliTestLocVnet9170\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestIndia/providers/Microsoft.ServiceBus/namespaces/aadpasprodtest\",\r\n \"name\": \"aadpasprodtest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/ShubhamTestSB\",\r\n \"name\": \"ShubhamTestSB\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst1872\",\r\n \"name\": \"xpltsbtst1872\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst5961\",\r\n \"name\": \"xpltsbtst5961\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst8195\",\r\n \"name\": \"xpltsbtst8195\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-SQL-WestUS/providers/Microsoft.Sql/servers/x2gr6otzvk\",\r\n \"name\": \"x2gr6otzvk\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-SQL-WestUS/providers/Microsoft.Sql/servers/x2gr6otzvk/databases/TestCloupWebApp2_db\",\r\n \"name\": \"x2gr6otzvk/TestCloupWebApp2_db\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3jj0d7xt5rm07\",\r\n \"name\": \"portalvhds3jj0d7xt5rm07\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/clivpnstorage5438\",\r\n \"name\": \"clivpnstorage5438\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/clivpnstorage761\",\r\n \"name\": \"clivpnstorage761\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default1\",\r\n \"name\": \"Default1\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default2\",\r\n \"name\": \"Default2\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default3\",\r\n \"name\": \"Default3\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots4108\",\r\n \"name\": \"slots4108\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots5307\",\r\n \"name\": \"slots5307\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots5307/slots/staging\",\r\n \"name\": \"slots5307/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/TestCloupWebApp2\",\r\n \"name\": \"TestCloupWebApp2\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/experimental/providers/Microsoft.DocumentDb/databaseAccounts/rbac01\",\r\n \"name\": \"rbac01\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicCompute/domainNames/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicCompute/virtualMachines/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicCompute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicNetwork/virtualNetworks/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicStorage/storageAccounts/testrbac6nbzd732\",\r\n \"name\": \"testrbac6nbzd732\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1330\",\r\n \"name\": \"onesdk1330\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk3111\",\r\n \"name\": \"onesdk3111\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5232\",\r\n \"name\": \"onesdk5232\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7029\",\r\n \"name\": \"onesdk7029\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7573\",\r\n \"name\": \"onesdk7573\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9143\",\r\n \"name\": \"onesdk9143\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2229\",\r\n \"name\": \"onesdk2229\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk5644\",\r\n \"name\": \"onesdk5644\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"2e27dba2-889a-4e98-9fd3-39c1b7bbf726\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk9462\",\r\n \"name\": \"onesdk9462\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"0ecc7f97-5a2c-42a1-8c16-be43bce2a55b\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1316/providers/Microsoft.ContainerRegistry/registries/onesdk8861\",\r\n \"name\": \"onesdk8861\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1316/providers/Microsoft.Storage/storageAccounts/onesdk8861081157\",\r\n \"name\": \"onesdk8861081157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"containerregistry\": \"onesdk8861\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1339/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1439/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk154/providers/Microsoft.OperationalInsights/workspaces/AzTestonesdk229\",\r\n \"name\": \"AzTestonesdk229\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1617/providers/Microsoft.Logic/workflows/onesdk5301\",\r\n \"name\": \"onesdk5301\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1617/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/publicIPAddresses/onesdk1921\",\r\n \"name\": \"onesdk1921\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/virtualNetworkGateways/onesdk3368\",\r\n \"name\": \"onesdk3368\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/virtualNetworks/onesdk43\",\r\n \"name\": \"onesdk43\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2175/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk3415\",\r\n \"name\": \"onesdk4816/onesdk3415\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk6152\",\r\n \"name\": \"onesdk4816/onesdk6152\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk8869\",\r\n \"name\": \"onesdk4816/onesdk8869\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2346/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk280/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2895/providers/Microsoft.DataLakeStore/accounts/onesdk1868\",\r\n \"name\": \"onesdk1868\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"9dd30be9-c268-488b-86ac-76ff12357305\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3549/providers/Microsoft.ContainerRegistry/registries/onesdk2020\",\r\n \"name\": \"onesdk2020\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3549/providers/Microsoft.Storage/storageAccounts/onesdk2020081413\",\r\n \"name\": \"onesdk2020081413\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"containerregistry\": \"onesdk2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3621/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3717/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3802/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3891/providers/Microsoft.Storage/storageAccounts/tianotest010f2c\",\r\n \"name\": \"tianotest010f2c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4117/providers/Microsoft.DataLakeStore/accounts/onesdk1178\",\r\n \"name\": \"onesdk1178\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"574db4ee-87ca-4159-8024-6ba42b71dfd7\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4324/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4379/providers/Microsoft.Logic/workflows/onesdk6138\",\r\n \"name\": \"onesdk6138\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4379/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4782/providers/Microsoft.DataLakeAnalytics/accounts/onesdk7429\",\r\n \"name\": \"onesdk7429\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4782/providers/Microsoft.DataLakeStore/accounts/onesdk6018\",\r\n \"name\": \"onesdk6018\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"fc22f10f-d631-4564-a095-a9f4685c5d77\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4863/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4945/providers/Providers.Test/statefulResources/testname\",\r\n \"name\": \"testname\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"sku\": {\r\n \"name\": \"A0\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"scenarioTestTag\": \"ScenarioTestVal\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4947/providers/Microsoft.DataLakeStore/accounts/onesdk3892\",\r\n \"name\": \"onesdk3892\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"1d19c429-c158-42c6-a78c-07d8a269f496\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5023/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk531/providers/Microsoft.Logic/workflows/onesdk3279\",\r\n \"name\": \"onesdk3279\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"a63417b2-9b63-41cc-bd6c-5a40c2e725e9\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk8460\",\r\n \"name\": \"onesdk8460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"08b6593a-2942-42dd-afb5-333e4a81ed78\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5492/providers/Microsoft.Logic/workflows/onesdk3615\",\r\n \"name\": \"onesdk3615\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5492/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5966/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6286/providers/Microsoft.Logic/workflows/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6286/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk2288\",\r\n \"name\": \"onesdk2288\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk2790\",\r\n \"name\": \"onesdk2790\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk8157\",\r\n \"name\": \"onesdk8157\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworkGateways/onesdk1757\",\r\n \"name\": \"onesdk1757\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworkGateways/onesdk6921\",\r\n \"name\": \"onesdk6921\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworks/onesdk6340\",\r\n \"name\": \"onesdk6340\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworks/onesdk7896\",\r\n \"name\": \"onesdk7896\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6297/providers/Microsoft.Logic/workflows/onesdk4704\",\r\n \"name\": \"onesdk4704\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6297/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6317/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6318/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6598/providers/Microsoft.Logic/workflows/onesdk7111\",\r\n \"name\": \"onesdk7111\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6598/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6617/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7039/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7411/providers/Microsoft.OperationalInsights/workspaces/AzTestonesdk8821\",\r\n \"name\": \"AzTestonesdk8821\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7588/providers/Microsoft.Storage/storageAccounts/testvivek52f323kdd255555\",\r\n \"name\": \"testvivek52f323kdd255555\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7693/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8012/providers/Providers.Test/statefulResources/onesdk7354\",\r\n \"name\": \"onesdk7354\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/serverFarms/onesdk2053\",\r\n \"name\": \"onesdk2053\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/serverFarms/onesdk3891\",\r\n \"name\": \"onesdk3891\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/sites/onesdk3948\",\r\n \"name\": \"onesdk3948\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/sites/onesdk9198\",\r\n \"name\": \"onesdk9198\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8173/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk837/providers/Microsoft.DataLakeStore/accounts/onesdk6740\",\r\n \"name\": \"onesdk6740\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"3dac2760-afe9-4f41-8716-cc42ce15854d\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk848/providers/Providers.Test/statefulResources/onesdk3231\",\r\n \"name\": \"onesdk3231\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8480/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8575/providers/Microsoft.Storage/storageAccounts/tianotest010f3c\",\r\n \"name\": \"tianotest010f3c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk86/providers/Microsoft.Logic/workflows/onesdk6672\",\r\n \"name\": \"onesdk6672\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk86/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8661/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8700/providers/Microsoft.Logic/workflows/onesdk7\",\r\n \"name\": \"onesdk7\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8700/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8949/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/publicIPAddresses/onesdk3710\",\r\n \"name\": \"onesdk3710\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/publicIPAddresses/onesdk417\",\r\n \"name\": \"onesdk417\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/virtualNetworkGateways/onesdk5746\",\r\n \"name\": \"onesdk5746\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/virtualNetworks/onesdk9678\",\r\n \"name\": \"onesdk9678\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9206/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9479/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9775/providers/Microsoft.Logic/workflows/onesdk2164\",\r\n \"name\": \"onesdk2164\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9775/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk988/providers/Microsoft.Logic/workflows/onesdk6706\",\r\n \"name\": \"onesdk6706\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk988/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/importexporttest\",\r\n \"name\": \"importexporttest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/powershelltest1\",\r\n \"name\": \"powershelltest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg3509/providers/Microsoft.KeyVault/vaults/pshtestvault4645\",\r\n \"name\": \"pshtestvault4645\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg4650/providers/Microsoft.KeyVault/vaults/pshtestvault9486\",\r\n \"name\": \"pshtestvault9486\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg6787/providers/Microsoft.KeyVault/vaults/pshtestvault4620\",\r\n \"name\": \"pshtestvault4620\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbaconebox/providers/Microsoft.ClassicStorage/storageAccounts/rbaconeboxtestaccount\",\r\n \"name\": \"rbaconeboxtestaccount\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rg123/providers/Microsoft.DocumentDb/databaseAccounts/testaccountazureconfig1\",\r\n \"name\": \"testaccountazureconfig1\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1377/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk4993\",\r\n \"name\": \"SBNamespace-onesdk4993\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6907/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk7329\",\r\n \"name\": \"SBNamespace-onesdk7329\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7979/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk9997\",\r\n \"name\": \"SBNamespace-onesdk9997\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8844/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk8139\",\r\n \"name\": \"SBNamespace-onesdk8139\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.ClassicStorage/storageAccounts/shubhamclassicstorage\",\r\n \"name\": \"shubhamclassicstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Compute/virtualMachines/TestVM1\",\r\n \"name\": \"TestVM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Compute/virtualMachines/TestVM1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"TestVM1/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.DataLakeStore/accounts/testdatalakestore123\",\r\n \"name\": \"testdatalakestore123\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkInterfaces/testvm1179\",\r\n \"name\": \"testvm1179\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkInterfaces/testvm1219\",\r\n \"name\": \"testvm1219\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkSecurityGroups/TestVm1\",\r\n \"name\": \"TestVm1\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkSecurityGroups/TestVM17594\",\r\n \"name\": \"TestVM17594\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/publicIPAddresses/TestVm1\",\r\n \"name\": \"TestVm1\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/publicIPAddresses/TestVM14387\",\r\n \"name\": \"TestVM14387\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/virtualNetworks/ShubhamTestNetwork\",\r\n \"name\": \"ShubhamTestNetwork\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\",\r\n \"name\": \"shubhamstorage12345\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26668\",\r\n \"name\": \"xDeploymentTestHost26668\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI\",\r\n \"name\": \"TestMSI\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"6a8a0686-607c-4b46-be6c-2aafa8b12efc\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI/extensions/ManagedIdentityExtensionForLinux\",\r\n \"name\": \"TestMSI/ManagedIdentityExtensionForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/networkInterfaces/testmsi269\",\r\n \"name\": \"testmsi269\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/networkSecurityGroups/TestMSI-nsg\",\r\n \"name\": \"TestMSI-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/publicIPAddresses/TestMSI-ip\",\r\n \"name\": \"TestMSI-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/virtualNetworks/TestMSI-vnet\",\r\n \"name\": \"TestMSI-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Storage/storageAccounts/testmsidiag858\",\r\n \"name\": \"testmsidiag858\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Storage/storageAccounts/testmsidisks194\",\r\n \"name\": \"testmsidisks194\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Web/sites/TestAppForMSI\",\r\n \"name\": \"TestAppForMSI\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812\",\r\n \"name\": \"testserver11812\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812/databases/rbactestsql\",\r\n \"name\": \"testserver11812/rbactestsql\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812/databases/testdb1542\",\r\n \"name\": \"testserver11812/testdb1542\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg1295/providers/Microsoft.Sql/servers/testserver19118\",\r\n \"name\": \"testserver19118\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg13624/providers/Microsoft.Sql/servers/testserver1683\",\r\n \"name\": \"testserver1683\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg14195/providers/Microsoft.Sql/servers/testserver19474\",\r\n \"name\": \"testserver19474\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15251/providers/Microsoft.Sql/servers/testserver12861\",\r\n \"name\": \"testserver12861\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15602/providers/Microsoft.Sql/servers/testserver16925\",\r\n \"name\": \"testserver16925\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16004/providers/Microsoft.Sql/servers/testserver12769\",\r\n \"name\": \"testserver12769\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16145/providers/Microsoft.Sql/servers/testserver13141\",\r\n \"name\": \"testserver13141\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16987/providers/Microsoft.Sql/servers/testserver13673\",\r\n \"name\": \"testserver13673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg17098/providers/Microsoft.Sql/servers/testserver19145\",\r\n \"name\": \"testserver19145\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg17098/providers/Microsoft.Sql/servers/testserver19145/databases/testdb14284\",\r\n \"name\": \"testserver19145/testdb14284\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Automation/automationAccounts/MyAzureAutomation\",\r\n \"name\": \"MyAzureAutomation\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Automation/automationAccounts/MyAzureAutomation/runbooks/myrunbook\",\r\n \"name\": \"MyAzureAutomation/myrunbook\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Sql/servers/testserver1342\",\r\n \"name\": \"testserver1342\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testservicebusaccount1/providers/Microsoft.ServiceBus/namespaces/testservicebusaccount1\",\r\n \"name\": \"testservicebusaccount1\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/abarg17186/providers/Microsoft.Storage/storageAccounts/azureblob01404\",\r\n \"name\": \"azureblob01404\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishstorage2/providers/Microsoft.Storage/storageAccounts/ashishteststorage2\",\r\n \"name\": \"ashishteststorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishtest/providers/Microsoft.DocumentDb/databaseAccounts/ashishwebjobtest1\",\r\n \"name\": \"ashishwebjobtest1\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.ClassicCompute/domainNames/cli-cs1798\",\r\n \"name\": \"cli-cs1798\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Compute/virtualMachines/runbook\",\r\n \"name\": \"runbook\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"kel-stu-mktp\",\r\n \"product\": \"kelverion-runbook-studio\",\r\n \"publisher\": \"kelverion\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/networkInterfaces/runbook323\",\r\n \"name\": \"runbook323\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/networkSecurityGroups/runbook-nsg\",\r\n \"name\": \"runbook-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/publicIPAddresses/runbook-ip\",\r\n \"name\": \"runbook-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Network/virtualNetworks/cli-cs1798-vnet\",\r\n \"name\": \"cli-cs1798-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798/providers/Microsoft.Storage/storageAccounts/clics1798diag765\",\r\n \"name\": \"clics1798diag765\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1852/providers/Microsoft.ClassicCompute/domainNames/cli-cs1852\",\r\n \"name\": \"cli-cs1852\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2382/providers/Microsoft.ClassicCompute/domainNames/cli-cs2382\",\r\n \"name\": \"cli-cs2382\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2609/providers/Microsoft.ClassicCompute/domainNames/cli-cs2609\",\r\n \"name\": \"cli-cs2609\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs300/providers/Microsoft.ClassicCompute/domainNames/cli-cs300\",\r\n \"name\": \"cli-cs300\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3176/providers/Microsoft.ClassicCompute/domainNames/cli-cs3176\",\r\n \"name\": \"cli-cs3176\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3677/providers/Microsoft.ClassicCompute/domainNames/cli-cs3677\",\r\n \"name\": \"cli-cs3677\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3841/providers/Microsoft.ClassicCompute/domainNames/cli-cs3841\",\r\n \"name\": \"cli-cs3841\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3883/providers/Microsoft.ClassicCompute/domainNames/cli-cs3883\",\r\n \"name\": \"cli-cs3883\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs4027/providers/Microsoft.ClassicCompute/domainNames/cli-cs4027\",\r\n \"name\": \"cli-cs4027\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs550/providers/Microsoft.ClassicCompute/domainNames/cli-cs550\",\r\n \"name\": \"cli-cs550\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs7037/providers/Microsoft.ClassicCompute/domainNames/cli-cs7037\",\r\n \"name\": \"cli-cs7037\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8013/providers/Microsoft.ClassicCompute/domainNames/cli-cs8013\",\r\n \"name\": \"cli-cs8013\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8479/providers/Microsoft.ClassicCompute/domainNames/cli-cs8479\",\r\n \"name\": \"cli-cs8479\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9049/providers/Microsoft.ClassicCompute/domainNames/cli-cs9049\",\r\n \"name\": \"cli-cs9049\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9429/providers/Microsoft.ClassicCompute/domainNames/cli-cs9429\",\r\n \"name\": \"cli-cs9429\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs946/providers/Microsoft.ClassicCompute/domainNames/cli-cs946\",\r\n \"name\": \"cli-cs946\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs975/providers/Microsoft.ClassicCompute/domainNames/cli-cs975\",\r\n \"name\": \"cli-cs975\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs983/providers/Microsoft.ClassicCompute/domainNames/cli-cs983\",\r\n \"name\": \"cli-cs983\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs44004a9fdd58ex48dcxaeb\",\r\n \"name\": \"cs44004a9fdd58ex48dcxaeb\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Compute/virtualMachineScaleSets/vmsscrptestps130\",\r\n \"name\": \"vmsscrptestps130\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Network/virtualNetworks/vnetcrptestps130\",\r\n \"name\": \"vnetcrptestps130\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130/providers/Microsoft.Storage/storageAccounts/stocrptestps130\",\r\n \"name\": \"stocrptestps130\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/networkSecurityGroups/xplatTestNSGNic8469\",\r\n \"name\": \"xplatTestNSGNic8469\",\r\n \"type\": \"Microsoft.ClassicNetwork/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet136\",\r\n \"name\": \"CliGtTestVnet136\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet241\",\r\n \"name\": \"CliGtTestVnet241\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet2443\",\r\n \"name\": \"CliGtTestVnet2443\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliTestLocVnet9170\",\r\n \"name\": \"CliTestLocVnet9170\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestIndia/providers/Microsoft.ServiceBus/namespaces/aadpasprodtest\",\r\n \"name\": \"aadpasprodtest\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/ShubhamTestSB\",\r\n \"name\": \"ShubhamTestSB\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst1872\",\r\n \"name\": \"xpltsbtst1872\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst5961\",\r\n \"name\": \"xpltsbtst5961\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/xpltsbtst8195\",\r\n \"name\": \"xpltsbtst8195\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-SQL-WestUS/providers/Microsoft.Sql/servers/x2gr6otzvk\",\r\n \"name\": \"x2gr6otzvk\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-SQL-WestUS/providers/Microsoft.Sql/servers/x2gr6otzvk/databases/TestCloupWebApp2_db\",\r\n \"name\": \"x2gr6otzvk/TestCloupWebApp2_db\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3jj0d7xt5rm07\",\r\n \"name\": \"portalvhds3jj0d7xt5rm07\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/clivpnstorage5438\",\r\n \"name\": \"clivpnstorage5438\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/clivpnstorage761\",\r\n \"name\": \"clivpnstorage761\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default1\",\r\n \"name\": \"Default1\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default2\",\r\n \"name\": \"Default2\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/serverFarms/Default3\",\r\n \"name\": \"Default3\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots4108\",\r\n \"name\": \"slots4108\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots5307\",\r\n \"name\": \"slots5307\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/slots5307/slots/staging\",\r\n \"name\": \"slots5307/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/sites/TestCloupWebApp2\",\r\n \"name\": \"TestCloupWebApp2\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/experimental/providers/Microsoft.DocumentDb/databaseAccounts/rbac01\",\r\n \"name\": \"rbac01\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicCompute/domainNames/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicCompute/domainNames\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicCompute/virtualMachines/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicCompute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicNetwork/virtualNetworks/testRbac\",\r\n \"name\": \"testRbac\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group/providers/Microsoft.ClassicStorage/storageAccounts/testrbac6nbzd732\",\r\n \"name\": \"testrbac6nbzd732\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk1330\",\r\n \"name\": \"onesdk1330\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk3111\",\r\n \"name\": \"onesdk3111\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5232\",\r\n \"name\": \"onesdk5232\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7029\",\r\n \"name\": \"onesdk7029\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk7573\",\r\n \"name\": \"onesdk7573\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk9143\",\r\n \"name\": \"onesdk9143\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2229\",\r\n \"name\": \"onesdk2229\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk5644\",\r\n \"name\": \"onesdk5644\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"2e27dba2-889a-4e98-9fd3-39c1b7bbf726\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk9462\",\r\n \"name\": \"onesdk9462\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"0ecc7f97-5a2c-42a1-8c16-be43bce2a55b\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1316/providers/Microsoft.ContainerRegistry/registries/onesdk8861\",\r\n \"name\": \"onesdk8861\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1316/providers/Microsoft.Storage/storageAccounts/onesdk8861081157\",\r\n \"name\": \"onesdk8861081157\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"containerregistry\": \"onesdk8861\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1339/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1439/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk154/providers/Microsoft.OperationalInsights/workspaces/AzTestonesdk229\",\r\n \"name\": \"AzTestonesdk229\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1617/providers/Microsoft.Logic/workflows/onesdk5301\",\r\n \"name\": \"onesdk5301\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1617/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/publicIPAddresses/onesdk1921\",\r\n \"name\": \"onesdk1921\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/virtualNetworkGateways/onesdk3368\",\r\n \"name\": \"onesdk3368\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812/providers/Microsoft.Network/virtualNetworks/onesdk43\",\r\n \"name\": \"onesdk43\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2175/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk3415\",\r\n \"name\": \"onesdk4816/onesdk3415\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk6152\",\r\n \"name\": \"onesdk4816/onesdk6152\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,datawarehouse\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201/providers/Microsoft.Sql/servers/onesdk4816/databases/onesdk8869\",\r\n \"name\": \"onesdk4816/onesdk8869\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2346/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk280/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2895/providers/Microsoft.DataLakeStore/accounts/onesdk1868\",\r\n \"name\": \"onesdk1868\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"9dd30be9-c268-488b-86ac-76ff12357305\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3549/providers/Microsoft.ContainerRegistry/registries/onesdk2020\",\r\n \"name\": \"onesdk2020\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3549/providers/Microsoft.Storage/storageAccounts/onesdk2020081413\",\r\n \"name\": \"onesdk2020081413\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"containerregistry\": \"onesdk2020\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3621/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3717/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3802/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3891/providers/Microsoft.Storage/storageAccounts/tianotest010f2c\",\r\n \"name\": \"tianotest010f2c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4117/providers/Microsoft.DataLakeStore/accounts/onesdk1178\",\r\n \"name\": \"onesdk1178\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"574db4ee-87ca-4159-8024-6ba42b71dfd7\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4324/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4379/providers/Microsoft.Logic/workflows/onesdk6138\",\r\n \"name\": \"onesdk6138\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4379/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4670/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4782/providers/Microsoft.DataLakeAnalytics/accounts/onesdk7429\",\r\n \"name\": \"onesdk7429\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4782/providers/Microsoft.DataLakeStore/accounts/onesdk6018\",\r\n \"name\": \"onesdk6018\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"fc22f10f-d631-4564-a095-a9f4685c5d77\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4863/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4945/providers/Providers.Test/statefulResources/testname\",\r\n \"name\": \"testname\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"sku\": {\r\n \"name\": \"A0\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"scenarioTestTag\": \"ScenarioTestVal\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4947/providers/Microsoft.DataLakeStore/accounts/onesdk3892\",\r\n \"name\": \"onesdk3892\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"1d19c429-c158-42c6-a78c-07d8a269f496\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5023/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk531/providers/Microsoft.Logic/workflows/onesdk3279\",\r\n \"name\": \"onesdk3279\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk5000\",\r\n \"name\": \"onesdk5000\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"a63417b2-9b63-41cc-bd6c-5a40c2e725e9\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk8460\",\r\n \"name\": \"onesdk8460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"08b6593a-2942-42dd-afb5-333e4a81ed78\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5492/providers/Microsoft.Logic/workflows/onesdk3615\",\r\n \"name\": \"onesdk3615\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5492/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5966/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6286/providers/Microsoft.Logic/workflows/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6286/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk2288\",\r\n \"name\": \"onesdk2288\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk2790\",\r\n \"name\": \"onesdk2790\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/publicIPAddresses/onesdk8157\",\r\n \"name\": \"onesdk8157\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworkGateways/onesdk1757\",\r\n \"name\": \"onesdk1757\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworkGateways/onesdk6921\",\r\n \"name\": \"onesdk6921\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworks/onesdk6340\",\r\n \"name\": \"onesdk6340\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296/providers/Microsoft.Network/virtualNetworks/onesdk7896\",\r\n \"name\": \"onesdk7896\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6297/providers/Microsoft.Logic/workflows/onesdk4704\",\r\n \"name\": \"onesdk4704\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6297/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6317/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6318/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6598/providers/Microsoft.Logic/workflows/onesdk7111\",\r\n \"name\": \"onesdk7111\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6598/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6617/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7039/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7411/providers/Microsoft.OperationalInsights/workspaces/AzTestonesdk8821\",\r\n \"name\": \"AzTestonesdk8821\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"val1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7588/providers/Microsoft.Storage/storageAccounts/testvivek52f323kdd255555\",\r\n \"name\": \"testvivek52f323kdd255555\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7693/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8012/providers/Providers.Test/statefulResources/onesdk7354\",\r\n \"name\": \"onesdk7354\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/serverFarms/onesdk2053\",\r\n \"name\": \"onesdk2053\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/serverFarms/onesdk3891\",\r\n \"name\": \"onesdk3891\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P1\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/sites/onesdk3948\",\r\n \"name\": \"onesdk3948\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172/providers/Microsoft.Web/sites/onesdk9198\",\r\n \"name\": \"onesdk9198\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8173/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk837/providers/Microsoft.DataLakeStore/accounts/onesdk6740\",\r\n \"name\": \"onesdk6740\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"principalId\": \"3dac2760-afe9-4f41-8716-cc42ce15854d\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk848/providers/Providers.Test/statefulResources/onesdk3231\",\r\n \"name\": \"onesdk3231\",\r\n \"type\": \"Providers.Test/statefulResources\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8480/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8575/providers/Microsoft.Storage/storageAccounts/tianotest010f3c\",\r\n \"name\": \"tianotest010f3c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk86/providers/Microsoft.Logic/workflows/onesdk6672\",\r\n \"name\": \"onesdk6672\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk86/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8661/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8700/providers/Microsoft.Logic/workflows/onesdk7\",\r\n \"name\": \"onesdk7\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8700/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8949/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/publicIPAddresses/onesdk3710\",\r\n \"name\": \"onesdk3710\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/publicIPAddresses/onesdk417\",\r\n \"name\": \"onesdk417\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/virtualNetworkGateways/onesdk5746\",\r\n \"name\": \"onesdk5746\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975/providers/Microsoft.Network/virtualNetworks/onesdk9678\",\r\n \"name\": \"onesdk9678\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9206/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9479/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9775/providers/Microsoft.Logic/workflows/onesdk2164\",\r\n \"name\": \"onesdk2164\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9775/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk988/providers/Microsoft.Logic/workflows/onesdk6706\",\r\n \"name\": \"onesdk6706\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk988/providers/Microsoft.Web/serverFarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/PowerShellTest-5/providers/Microsoft.Cache/Redis/importexporttest\",\r\n \"name\": \"importexporttest\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/PowerShellTest-5/providers/Microsoft.Storage/storageAccounts/powershelltest1\",\r\n \"name\": \"powershelltest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg3509/providers/Microsoft.KeyVault/vaults/pshtestvault4645\",\r\n \"name\": \"pshtestvault4645\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg4650/providers/Microsoft.KeyVault/vaults/pshtestvault9486\",\r\n \"name\": \"pshtestvault9486\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg6787/providers/Microsoft.KeyVault/vaults/pshtestvault4620\",\r\n \"name\": \"pshtestvault4620\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbaconebox/providers/Microsoft.ClassicStorage/storageAccounts/rbaconeboxtestaccount\",\r\n \"name\": \"rbaconeboxtestaccount\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rg123/providers/Microsoft.DocumentDb/databaseAccounts/testaccountazureconfig1\",\r\n \"name\": \"testaccountazureconfig1\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1377/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk4993\",\r\n \"name\": \"SBNamespace-onesdk4993\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6907/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk7329\",\r\n \"name\": \"SBNamespace-onesdk7329\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7979/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk9997\",\r\n \"name\": \"SBNamespace-onesdk9997\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8844/providers/Microsoft.ServiceBus/namespaces/SBNamespace-onesdk8139\",\r\n \"name\": \"SBNamespace-onesdk8139\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.ClassicStorage/storageAccounts/shubhamclassicstorage\",\r\n \"name\": \"shubhamclassicstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Compute/virtualMachines/TestVM1\",\r\n \"name\": \"TestVM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Compute/virtualMachines/TestVM1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"TestVM1/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.DataLakeStore/accounts/testdatalakestore123\",\r\n \"name\": \"testdatalakestore123\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkInterfaces/testvm1179\",\r\n \"name\": \"testvm1179\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkInterfaces/testvm1219\",\r\n \"name\": \"testvm1219\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkSecurityGroups/TestVm1\",\r\n \"name\": \"TestVm1\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/networkSecurityGroups/TestVM17594\",\r\n \"name\": \"TestVM17594\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/publicIPAddresses/TestVm1\",\r\n \"name\": \"TestVm1\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/publicIPAddresses/TestVM14387\",\r\n \"name\": \"TestVM14387\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Network/virtualNetworks/ShubhamTestNetwork\",\r\n \"name\": \"ShubhamTestNetwork\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\",\r\n \"name\": \"shubhamstorage12345\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Web/serverFarms/xDeploymentTestHost26668\",\r\n \"name\": \"xDeploymentTestHost26668\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI\",\r\n \"name\": \"TestMSI\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"6a8a0686-607c-4b46-be6c-2aafa8b12efc\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI/extensions/ManagedIdentityExtensionForLinux\",\r\n \"name\": \"TestMSI/ManagedIdentityExtensionForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/networkInterfaces/testmsi269\",\r\n \"name\": \"testmsi269\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/networkSecurityGroups/TestMSI-nsg\",\r\n \"name\": \"TestMSI-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/publicIPAddresses/TestMSI-ip\",\r\n \"name\": \"TestMSI-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Network/virtualNetworks/TestMSI-vnet\",\r\n \"name\": \"TestMSI-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Storage/storageAccounts/testmsidiag858\",\r\n \"name\": \"testmsidiag858\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Storage/storageAccounts/testmsidisks194\",\r\n \"name\": \"testmsidisks194\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI/providers/Microsoft.Web/sites/TestAppForMSI\",\r\n \"name\": \"TestAppForMSI\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812\",\r\n \"name\": \"testserver11812\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812/databases/rbactestsql\",\r\n \"name\": \"testserver11812/rbactestsql\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"S2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792/providers/Microsoft.Sql/servers/testserver11812/databases/testdb1542\",\r\n \"name\": \"testserver11812/testdb1542\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg1295/providers/Microsoft.Sql/servers/testserver19118\",\r\n \"name\": \"testserver19118\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg13624/providers/Microsoft.Sql/servers/testserver1683\",\r\n \"name\": \"testserver1683\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg14195/providers/Microsoft.Sql/servers/testserver19474\",\r\n \"name\": \"testserver19474\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15251/providers/Microsoft.Sql/servers/testserver12861\",\r\n \"name\": \"testserver12861\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15602/providers/Microsoft.Sql/servers/testserver16925\",\r\n \"name\": \"testserver16925\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16004/providers/Microsoft.Sql/servers/testserver12769\",\r\n \"name\": \"testserver12769\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16145/providers/Microsoft.Sql/servers/testserver13141\",\r\n \"name\": \"testserver13141\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16987/providers/Microsoft.Sql/servers/testserver13673\",\r\n \"name\": \"testserver13673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg17098/providers/Microsoft.Sql/servers/testserver19145\",\r\n \"name\": \"testserver19145\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg17098/providers/Microsoft.Sql/servers/testserver19145/databases/testdb14284\",\r\n \"name\": \"testserver19145/testdb14284\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Automation/automationAccounts/MyAzureAutomation\",\r\n \"name\": \"MyAzureAutomation\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Automation/automationAccounts/MyAzureAutomation/runbooks/myrunbook\",\r\n \"name\": \"MyAzureAutomation/myrunbook\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972/providers/Microsoft.Sql/servers/testserver1342\",\r\n \"name\": \"testserver1342\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testservicebusaccount1/providers/Microsoft.ServiceBus/namespaces/testservicebusaccount1\",\r\n \"name\": \"testservicebusaccount1\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Messaging\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "56642" + "56756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,16 +1401,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "dc89c448-d20d-488e-bb5e-42ae89c9004b" + "0621b886-add3-485d-be1d-ea45de8d867d" ], "x-ms-correlation-request-id": [ - "dc89c448-d20d-488e-bb5e-42ae89c9004b" + "0621b886-add3-485d-be1d-ea45de8d867d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201445Z:dc89c448-d20d-488e-bb5e-42ae89c9004b" + "WESTUS2:20171101T201601Z:0621b886-add3-485d-be1d-ea45de8d867d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,7 +1419,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:14:44 GMT" + "Wed, 01 Nov 2017 20:16:00 GMT" ] }, "StatusCode": 200 @@ -1431,7 +1431,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdd2380d-ae1f-4b4d-84e1-3745296124c1" + "f8db851b-d4e5-4ae8-8e80-31e05fe0ee82" ], "accept-language": [ "en-US" @@ -1457,188 +1457,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" - ], - "x-ms-request-id": [ - "dbd34542-1f33-4ec3-8821-e1d5e966c841" - ], - "x-ms-correlation-request-id": [ - "dbd34542-1f33-4ec3-8821-e1d5e966c841" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201446Z:dbd34542-1f33-4ec3-8821-e1d5e966c841" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "73a7fbad-2425-47a7-b2b0-b71b99bcace3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" - ], - "x-ms-request-id": [ - "9814d0fc-ae80-44e3-8787-9d413cca0d0e" - ], - "x-ms-correlation-request-id": [ - "9814d0fc-ae80-44e3-8787-9d413cca0d0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201446Z:9814d0fc-ae80-44e3-8787-9d413cca0d0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb905bb2-8a53-4ef3-8c9a-7e61aaeb560e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" - ], - "x-ms-request-id": [ - "e5bc68de-3aaf-4491-aa22-3f24f2051f26" - ], - "x-ms-correlation-request-id": [ - "e5bc68de-3aaf-4491-aa22-3f24f2051f26" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201446Z:e5bc68de-3aaf-4491-aa22-3f24f2051f26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "555c9b28-cefa-4d9c-8659-72dc5320b50c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], "x-ms-ratelimit-remaining-tenant-reads": [ "14986" ], "x-ms-request-id": [ - "044a5675-15ba-4802-aa36-afd3d9298e56" + "f98b0fde-671d-4790-b3cd-ef55ccf1f394" ], "x-ms-correlation-request-id": [ - "044a5675-15ba-4802-aa36-afd3d9298e56" + "f98b0fde-671d-4790-b3cd-ef55ccf1f394" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201446Z:044a5675-15ba-4802-aa36-afd3d9298e56" + "WESTUS2:20171101T201601Z:f98b0fde-671d-4790-b3cd-ef55ccf1f394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1647,7 +1476,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" + "Wed, 01 Nov 2017 20:16:00 GMT" ] }, "StatusCode": 200 @@ -1659,7 +1488,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de46d942-4072-4bb5-97c5-9b026b0f2b41" + "e787b593-d600-4c0f-8489-c08c880454cd" ], "accept-language": [ "en-US" @@ -1671,10 +1500,10 @@ "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,13 +1518,13 @@ "14985" ], "x-ms-request-id": [ - "671ccf22-470f-473c-a252-7950e2c03cb8" + "278c88f5-3782-4850-83f7-e46816b4ead5" ], "x-ms-correlation-request-id": [ - "671ccf22-470f-473c-a252-7950e2c03cb8" + "278c88f5-3782-4850-83f7-e46816b4ead5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201446Z:671ccf22-470f-473c-a252-7950e2c03cb8" + "WESTUS2:20171101T201601Z:278c88f5-3782-4850-83f7-e46816b4ead5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1533,178 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:14:45 GMT" + "Wed, 01 Nov 2017 20:16:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ed2d8c7-94a9-4cfa-ac96-9359fdaf6a87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14984" + ], + "x-ms-request-id": [ + "e9a089db-32d4-4643-9ed3-743fec4db94d" + ], + "x-ms-correlation-request-id": [ + "e9a089db-32d4-4643-9ed3-743fec4db94d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T201601Z:e9a089db-32d4-4643-9ed3-743fec4db94d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:16:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e07fa897-b168-4ef9-b7dd-5f5f805db173" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14983" + ], + "x-ms-request-id": [ + "b351b321-bd32-4242-9964-2b040ccb18ae" + ], + "x-ms-correlation-request-id": [ + "b351b321-bd32-4242-9964-2b040ccb18ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T201601Z:b351b321-bd32-4242-9964-2b040ccb18ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:16:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81d72441-3b55-495e-adc3-349fb8273062" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14982" + ], + "x-ms-request-id": [ + "72565af8-0fe9-4814-944e-6fa4b2b0c645" + ], + "x-ms-correlation-request-id": [ + "72565af8-0fe9-4814-944e-6fa4b2b0c645" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T201601Z:72565af8-0fe9-4814-944e-6fa4b2b0c645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 20:16:00 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs index f30a4c5931..6b18476eca 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs @@ -224,8 +224,13 @@ namespace Microsoft.Azure.Commands.Resources.Models.Authorization var tempResult = AuthorizationManagementClient.RoleAssignments.List( new Rest.Azure.OData.ODataQuery(f => f.PrincipalId == principalId)); - result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) + if (!string.IsNullOrEmpty(options.Scope)) { + result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) .ToPSRoleAssignments(this, ActiveDirectoryClient, options.Scope, options.ExcludeAssignmentsForDeletedPrincipals)); + } else { + result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) + .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); + } while (!string.IsNullOrWhiteSpace(tempResult.NextPageLink)) { @@ -264,14 +269,14 @@ namespace Microsoft.Azure.Commands.Resources.Models.Authorization new Rest.Azure.OData.ODataQuery(f => f.PrincipalId == principalId)); result.AddRange(tempResult .FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) - .ToPSRoleAssignments(this, ActiveDirectoryClient, options.Scope, options.ExcludeAssignmentsForDeletedPrincipals)); + .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); while (!string.IsNullOrWhiteSpace(tempResult.NextPageLink)) { tempResult = AuthorizationManagementClient.RoleAssignments.ListNext(tempResult.NextPageLink); result.AddRange(tempResult .FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) - .ToPSRoleAssignments(this, ActiveDirectoryClient, options.Scope, options.ExcludeAssignmentsForDeletedPrincipals)); + .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); } } From 3e1c2cb1d7dcde62172aea05361c7bf0b1c7f7b0 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Wed, 1 Nov 2017 13:32:41 -0700 Subject: [PATCH 12/37] move script to build folder --- .../Commands.Resources.csproj | 3 - .../StartupScripts/DefaultResourceGroup.psm1 | 39 ---------- tools/AzureRM.Example.psm1 | Bin 3764 -> 1356 bytes tools/AzureRM/AzureRM.psm1 | Bin 34 -> 11594 bytes tools/UpdateModules.ps1 | 72 ++++++++++++++---- 5 files changed, 57 insertions(+), 57 deletions(-) delete mode 100644 src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index eefd5c8393..2999ad3386 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -173,9 +173,6 @@ - - Always - diff --git a/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 b/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 deleted file mode 100644 index 11dcb8969c..0000000000 --- a/src/ResourceManager/Resources/Commands.Resources/StartupScripts/DefaultResourceGroup.psm1 +++ /dev/null @@ -1,39 +0,0 @@ -# Set Default Resource Group for Resources cmdlets -$nestedModules = Test-ModuleManifest '../AzureRM.Profile.psd1' -$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Management.ResourceManager.dll' -$Assembly = [Reflection.Assembly]::LoadFrom($dllPath) -$AllCmdlets = $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} - -$dllPath = '../../../../../Package/Debug/ResourceManager/AzureResourceManager/AzureRM.Resources/Microsoft.Azure.Commands.Resources.dll' -$Assembly = [Reflection.Assembly]::LoadFrom($dllPath) -$AllCmdlets += $Assembly.GetTypes() | where {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} - -$FilteredCommands = @() -$AllCmdlets | ForEach-Object { - $rgParameter = $_.GetProperties() | Where-Object {$_.Name -eq "ResourceGroupName"} - if ($rgParameter -ne $null) { - $parameterSets = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} - $isMandatory = $true - $parameterSets | ForEach-Object { - $hasParameterSet = $_.NamedArguments | where {$_.MemberName -eq "ParameterSetName"} - $MandatoryParam = $_.NamedArguments | where {$_.MemberName -eq "Mandatory"} - if (($hasParameterSet -ne $null) -or (!$MandatoryParam.TypedValue.Value)) { - $isMandatory = $false - } - } - if ($isMandatory) { - $FilteredCommands += $_ - } - } -} - -$FilteredCommands | ForEach-Object { - $input = $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").VerbName + "-" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").NounName + ":ResourceGroupName" - $global:PSDefaultParameterValues.Add($input, - { - $context = Get-AzureRmContext - if ($context.ExtendedProperties.ContainsKey("Default Resource Group")) { - $context.ExtendedProperties["Default Resource Group"] - } - }) -} diff --git a/tools/AzureRM.Example.psm1 b/tools/AzureRM.Example.psm1 index 56bb44630a03edf0dd6ae29f28c8f0bc7870c362..6a6d81fe48fb3ef85fd55092f8021dee16c8e4db 100644 GIT binary patch delta 50 zcmdlYdxmSnE2hc6xRk_g859^)8JrpX8GM1zk-?9_g&~+hb@F?z$jNtjycpv*>+`lU F0sv@`4U7N) literal 3764 zcmd5FGuf99av}#(m4?)@bAbJANPGQ$bp)L;-ecHE@Et*_BQvSt`xG|2crt?35p2@( zJGFeTpFGjWD#pIo=vPI$DNWrKcv+X0`sSjxll)bdb7?}N2dizxA;C^ty&Phfo{r@s zb_RG#R6=-0v?#M9yNYB}C9BYsV3)BZb7YBX73ZmCvWVdXr>U73(+lUhOdJ4K+Knx!fgiCZFjmwOi$csDiBY73!mg`W?Zi2>!ADhKOj{x^diFB?`rOlyf#h zVQnTrd8S;RC}M#Skxz(>Ozjn*!B|;oWO|~0)$wiB)xoY+4`W*1b(TWpw~ctL0=v)= zL$(bxV(1K{l*wpbPif9VA9oQC=s|>+M=i?}!_N3@Y&wJo1NEPgNAQBETj!0`vt?!# z*);?=;nWuLIYv$9yP9W}%hI`WfIVjn53Sp<$8DOgG~(<^M44P7waRnF$Ei( zv_pCe7TKqWTGyq)DCD_R%t?n( zJ~Md@9wWxc9?qW2$s1fFK zsySg5G8eS_u;>8Hq1F5;JZC>62b~5^mDOmOWha|PivH$t@_7GyZ}Zl({yD~z^Xrf; z=6+SP&#HN`Cfab(g`?DsCQPk&m#WD!{y5usZ}M~6SYrK-Yrk@lu3~Stj+wdjopMhn zxtoh=duI1(eRuOpU<@%j4d+mrLpJNyO|2bt#U|>NlZ{-r`%?@Yd2?dlVvTUJP(P;w zYuruo^n5Am6T3KR_p?r_e)iyJ2~||WH`i8c|BJs3oey!&-`YmggL9R9xd9JH=p5u@ z4IS#K_j*6ceRf~zjf>3kGlsU@eWEAdkQ?KGp;<-Vz9Vy-?ia`%=R5OhlIAP*`FhCe z3UME$PIvE*5D9N)*{RHFmA%ot$B7xbKxygUOpwDcNX_69Dt@{0^6_ov)8&(GUoFsO Nr?7uzR>kRi(_gKVTE+kX diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1 index 2e72cb29c40c3bfe111b527d48bfd1621c2b496f..1c8c29464ac10cde477338fb30a1217c70c36f4d 100644 GIT binary patch literal 11594 zcmc&)Yi}Dx6un=K#DB0#q^44BlF%wp35lf7h^DPbfDZ^Ezv7xCwre|q0R8L0Irn-jHD}9av?qZcPT9y%0SNW-&AI} zbB5;=eUg0dz8uJ3Xf?rmKLF!C-iR^dtCx5_#AgEB8GgHXt1UP31i#0S)4`JwB#j`4 z(w?fcv3|3~09QlYj}ham+pzgIv3K$JrR?bUp8oFZ-90?r5q>|CZx%iKa?!?j_ z;tui-+<#VO>ozpi0x2UqN!d<}Ny*6tU!_ESoa>>tBc#ti+yXyHg3YINpX&OY|^ zb0qr;az>i>;%t*I)f-(V^$>P;FuLNCytmW}c~$;jQ+(ONWi z&6iJ+uQ)^GODg9@&P;tsV%8jJPW6t{uVJy*Rz~U=al_f78k>j6KvycY$oOEd?v=8W z{v7I`Y9-L2$&N%Gvv<{qc`p}4aOi;sw>fraoGuTU;U*N+U zg0oUI=WjaRZ{7GtpW1JdsrJ{WjW8LnifdTl6h^GnP$`rTTpK4xS(jGLb__e~w6RYriwr!se-R8JtyS2RayQbK_zIHmgAs zo~d&EN{?{dO~JHTW(=#r%6oyiriwbB7Lo%cpBm2jlpFCUI>*qn#<`K>4XwfaGfT8) z=J@h5KIQr~(!kiYLs%b{-I&k)wP0E**K=)nfI5VF-M@-FfgJJ$*~}6mxonJmKn@R) zQ?^fSZB`Xy%eCMH9&KTE_!MhX^6&k?xGm?|Q`p%;RbX{Na>Rz^i*nL`gpJmx2e7xV zKJVj>?Uigku6{-zbLDO0CoE5-EoPnhQLD`!M#2<$yt9rykYW{Vc2}cVYpcWKNT)}Z z_bG~D=I?tH!;5shYcIivw!Ayw!AaIj-uA}e`&uVCc@Khd?7o(HthpC8UV(ZMmYHoo z(kiZcJ*b?$lkBqxHR3dv`Q&w>8ADtK?QYI@9jGyj>qEPZm-Qhr`aCUT9y8)j%c0l` z--EHtZ+cL&D|{bD%t3nEXIVuLMwTb^V65id){mHG^1S%@+?)?NV%t2e)BKqaVKpP> z!3^WLJjknAD-U9JwU}PP`f^tuW|~>@YMteZyg0`Gcw49W91qGeL*qjs*J5m9a{U&a zu_=R@p@FLvJE_e_lzQEV^ZU(@Ew|Y(QLCmhwiNTMp zyLq*R6BJwnkvE`cyL!&_66_7nlXOvu)#Y1!zFVB&3~lufTD<^sJHbwYanlX#Oto?P zkt{xUd~K~?gARRYFv2tLYdmqBGd+N&U1+!^zsWE_evm%_4tU3j;KD6-SR)ZpX%468-f|7-Z7 AHUIzs literal 34 pcmY#Z2*^oHPR+>ANl7hINXsu$C{8ZQEGSVZNzE Date: Wed, 1 Nov 2017 13:41:24 -0700 Subject: [PATCH 13/37] revert changes --- .../Commands.Resources.csproj | 11 +++++++---- tools/AzureRM/AzureRM.psm1 | Bin 11594 -> 68 bytes 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 2999ad3386..ae5afc12a1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -188,10 +188,13 @@ - - - - + + + + \ No newline at end of file diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1 index 1c8c29464ac10cde477338fb30a1217c70c36f4d..ef11ce70483e591005de33ac2b94f28950523cd8 100644 GIT binary patch literal 68 zcmezWPnki1A%G!=A(0`OA(bJ6As@(20kVpK;%Pu0h%N@o6)|Ko6fl$kc_l#ETp$~y H2gC*d5@ZfM literal 11594 zcmc&)Yi}Dx6un=K#DB0#q^44BlF%wp35lf7h^DPbfDZ^Ezv7xCwre|q0R8L0Irn-jHD}9av?qZcPT9y%0SNW-&AI} zbB5;=eUg0dz8uJ3Xf?rmKLF!C-iR^dtCx5_#AgEB8GgHXt1UP31i#0S)4`JwB#j`4 z(w?fcv3|3~09QlYj}ham+pzgIv3K$JrR?bUp8oFZ-90?r5q>|CZx%iKa?!?j_ z;tui-+<#VO>ozpi0x2UqN!d<}Ny*6tU!_ESoa>>tBc#ti+yXyHg3YINpX&OY|^ zb0qr;az>i>;%t*I)f-(V^$>P;FuLNCytmW}c~$;jQ+(ONWi z&6iJ+uQ)^GODg9@&P;tsV%8jJPW6t{uVJy*Rz~U=al_f78k>j6KvycY$oOEd?v=8W z{v7I`Y9-L2$&N%Gvv<{qc`p}4aOi;sw>fraoGuTU;U*N+U zg0oUI=WjaRZ{7GtpW1JdsrJ{WjW8LnifdTl6h^GnP$`rTTpK4xS(jGLb__e~w6RYriwr!se-R8JtyS2RayQbK_zIHmgAs zo~d&EN{?{dO~JHTW(=#r%6oyiriwbB7Lo%cpBm2jlpFCUI>*qn#<`K>4XwfaGfT8) z=J@h5KIQr~(!kiYLs%b{-I&k)wP0E**K=)nfI5VF-M@-FfgJJ$*~}6mxonJmKn@R) zQ?^fSZB`Xy%eCMH9&KTE_!MhX^6&k?xGm?|Q`p%;RbX{Na>Rz^i*nL`gpJmx2e7xV zKJVj>?Uigku6{-zbLDO0CoE5-EoPnhQLD`!M#2<$yt9rykYW{Vc2}cVYpcWKNT)}Z z_bG~D=I?tH!;5shYcIivw!Ayw!AaIj-uA}e`&uVCc@Khd?7o(HthpC8UV(ZMmYHoo z(kiZcJ*b?$lkBqxHR3dv`Q&w>8ADtK?QYI@9jGyj>qEPZm-Qhr`aCUT9y8)j%c0l` z--EHtZ+cL&D|{bD%t3nEXIVuLMwTb^V65id){mHG^1S%@+?)?NV%t2e)BKqaVKpP> z!3^WLJjknAD-U9JwU}PP`f^tuW|~>@YMteZyg0`Gcw49W91qGeL*qjs*J5m9a{U&a zu_=R@p@FLvJE_e_lzQEV^ZU(@Ew|Y(QLCmhwiNTMp zyLq*R6BJwnkvE`cyL!&_66_7nlXOvu)#Y1!zFVB&3~lufTD<^sJHbwYanlX#Oto?P zkt{xUd~K~?gARRYFv2tLYdmqBGd+N&U1+!^zsWE_evm%_4tU3j;KD6-SR)ZpX%468-f|7-Z7 AHUIzs From 7bff7ecaea10ff6aab906efbea8e1ee36225e015 Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Wed, 1 Nov 2017 14:36:16 -0700 Subject: [PATCH 14/37] update session records --- .../RaClassicAdmins.json | 340 +++++------ .../RaNegativeScenarios.json | 570 +++++++++--------- 2 files changed, 455 insertions(+), 455 deletions(-) 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 14c1d8a55e..53db158dbf 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": [ - "71567063-48b7-4b11-a311-caecb39dba18" + "b796d847-eaa1-4147-9b1f-49387eebe3df" ], "accept-language": [ "en-US" @@ -34,16 +34,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14994" ], "x-ms-request-id": [ - "0ab8a6f4-60da-442f-b699-4828cd18fd16" + "01702601-74dc-49fe-8651-59da3e600a57" ], "x-ms-correlation-request-id": [ - "0ab8a6f4-60da-442f-b699-4828cd18fd16" + "01702601-74dc-49fe-8651-59da3e600a57" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200715Z:0ab8a6f4-60da-442f-b699-4828cd18fd16" + "WESTUS2:20171101T213536Z:01702601-74dc-49fe-8651-59da3e600a57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:35 GMT" ] }, "StatusCode": 200 @@ -64,7 +64,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8b62a4b-2b27-4a8b-8ab2-dda438ae76e5" + "c1a2259b-bd82-48b0-a047-f8d168e4cd23" ], "accept-language": [ "en-US" @@ -76,10 +76,124 @@ "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14993" + ], + "x-ms-request-id": [ + "5f0fe873-f05c-4b19-85f6-3e81ba2fefe6" + ], + "x-ms-correlation-request-id": [ + "5f0fe873-f05c-4b19-85f6-3e81ba2fefe6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213536Z:5f0fe873-f05c-4b19-85f6-3e81ba2fefe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:35:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0288817-8c84-4d3c-9b3f-fc75274310be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14992" + ], + "x-ms-request-id": [ + "de524263-b411-46ae-88a6-d59655d9aca2" + ], + "x-ms-correlation-request-id": [ + "de524263-b411-46ae-88a6-d59655d9aca2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213536Z:de524263-b411-46ae-88a6-d59655d9aca2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:35:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d73d6df-3166-4122-b318-44fe5674843e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,13 +208,13 @@ "14991" ], "x-ms-request-id": [ - "8806f714-2a8a-41a7-8ee0-bf00a2bac5e3" + "70448885-dfea-40af-bf50-2f39f19000ac" ], "x-ms-correlation-request-id": [ - "8806f714-2a8a-41a7-8ee0-bf00a2bac5e3" + "70448885-dfea-40af-bf50-2f39f19000ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200715Z:8806f714-2a8a-41a7-8ee0-bf00a2bac5e3" + "WESTUS2:20171101T213536Z:70448885-dfea-40af-bf50-2f39f19000ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109,7 +223,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:35 GMT" ] }, "StatusCode": 200 @@ -121,7 +235,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17638e05-692a-4165-a7fd-ec56296b0663" + "fe4297c0-8f4f-432e-9c4f-fe02c64656d4" ], "accept-language": [ "en-US" @@ -133,10 +247,10 @@ "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,13 +265,13 @@ "14990" ], "x-ms-request-id": [ - "4500c54e-89a0-4a94-9a32-f44ac5e250e6" + "4709fab3-79bf-4162-a45e-385c7b58671f" ], "x-ms-correlation-request-id": [ - "4500c54e-89a0-4a94-9a32-f44ac5e250e6" + "4709fab3-79bf-4162-a45e-385c7b58671f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200715Z:4500c54e-89a0-4a94-9a32-f44ac5e250e6" + "WESTUS2:20171101T213536Z:4709fab3-79bf-4162-a45e-385c7b58671f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,121 +280,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "379753ad-7a66-4d01-8f79-204d5d209781" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" - ], - "x-ms-request-id": [ - "78e69be2-ca70-41db-a6e4-7c196a66f36c" - ], - "x-ms-correlation-request-id": [ - "78e69be2-ca70-41db-a6e4-7c196a66f36c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T200715Z:78e69be2-ca70-41db-a6e4-7c196a66f36c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d00516cf-0758-436f-94d6-4e648fdc4387" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" - ], - "x-ms-request-id": [ - "ab0f96c1-83aa-4bce-8030-c21e20e724ab" - ], - "x-ms-correlation-request-id": [ - "ab0f96c1-83aa-4bce-8030-c21e20e724ab" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T200715Z:ab0f96c1-83aa-4bce-8030-c21e20e724ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:35 GMT" ] }, "StatusCode": 200 @@ -292,7 +292,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "690cfaf3-182f-4963-8924-0aa5cd13c55b" + "446db054-a2f6-4e5f-82b8-665c5bebb0d0" ], "accept-language": [ "en-US" @@ -304,10 +304,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/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-09-25T22:42:42.9647722Z\",\r\n \"updatedOn\": \"2017-09-25T22:42:42.9647722Z\",\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/a0c1d5c5-fa7c-4814-b190-53f036a0bb14\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a0c1d5c5-fa7c-4814-b190-53f036a0bb14\"\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\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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\": \"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\": \"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 \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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}", "ResponseHeaders": { "Content-Length": [ - "39635" + "41596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,7 +319,7 @@ "no-cache" ], "x-ms-request-id": [ - "fd00fd36-1984-488e-bad8-7ef7f016c968" + "8f68d993-e5e2-4136-b676-ec61548f7d03" ], "X-Content-Type-Options": [ "nosniff" @@ -328,19 +328,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "5f9e6f73-4859-41ba-8314-04ef5a9bdaff" + "d8a6d388-b5a8-4868-a11c-7b337a693e41" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200716Z:5f9e6f73-4859-41ba-8314-04ef5a9bdaff" + "WESTUS2:20171101T213536Z:d8a6d388-b5a8-4868-a11c-7b337a693e41" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:36 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -355,13 +355,13 @@ "StatusCode": 200 }, { - "RequestUri": "//providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", - "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba7d2d2-83f5-4f30-80fd-841bc5a88070" + "be951414-39dc-4763-bf44-614fb2dec5a0" ], "accept-language": [ "en-US" @@ -373,10 +373,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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\": \"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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T20:58:35.5117949Z\",\r\n \"updatedOn\": \"2017-11-01T21:31:07.1215947Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "72893" + "128313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,7 +388,7 @@ "no-cache" ], "x-ms-request-id": [ - "fbda4ee0-59a2-4009-9396-5a27e16644d9" + "579f5224-ac22-4c3c-aca7-e8bf84bd7c6d" ], "X-Content-Type-Options": [ "nosniff" @@ -396,20 +396,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], "x-ms-correlation-request-id": [ - "7f24bc6d-64cf-4046-9bb8-06f41ac4067d" + "87608290-6dc9-4bbc-b130-fe5fb2a0c192" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200716Z:7f24bc6d-64cf-4046-9bb8-06f41ac4067d" + "WESTUS2:20171101T213536Z:87608290-6dc9-4bbc-b130-fe5fb2a0c192" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:36 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -427,16 +427,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\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 \"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 \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\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": [ - "2591" + "2726" ], "x-ms-client-request-id": [ - "d1a3d6a0-4743-4b2a-921e-27111f3986a2" + "63e6eefe-280a-4fe4-a80d-dd78ab889fe5" ], "accept-language": [ "en-US" @@ -448,10 +448,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.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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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.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.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\": \"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\": \"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}", + "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.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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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.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.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\": \"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}", "ResponseHeaders": { "Content-Length": [ - "32639" + "33856" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -463,19 +463,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "PHA+MZLp3HM+MiVXTghBS0Om6GJiS3JCb0/eer+s+cI=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "e556df59-2cef-4147-8f66-f3a40aaf256b" + "3b21ae4f-3b18-46a4-813e-397cd01efb01" ], "client-request-id": [ - "5cd837a1-eb4f-44cf-8a5c-6260dc4c87c5" + "4c77c022-dfdb-4018-9ece-41ad95f0c38c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ZUulYrsviM4NpIsUNx-RdAyHPoK1OJvCLZgxmpOfkgaxqWZXjqIFfWAl2wEW1mkg92HiXnwKHQZfFMeDDQtua1UEvsNBHBy2KLDCF42hPnAWozzZRj41vMYZiMm2PI_r.KI05mwKopkIkNWWfdIOX-JhiF115hH6yL9jSYAJL87M" + "DQHi92e4XfMxeCTIzS9uNEiXi5HVUGv81tGCYd55M_ghSnmlw9ITk7MTMeDIXbIHi3kgt3cbRwPuqJ9w2DqvdhL0w9OxcrqzHdIs-CkHSnVScTf6pzEDlFtB07oqCsQP.vf3q7zXGwWhtsQ4HLEYffHvcusrCusa6k32Z8e-Z99A" ], "X-Content-Type-Options": [ "nosniff" @@ -490,7 +490,7 @@ "*" ], "Duration": [ - "1256086" + "1263255" ], "Cache-Control": [ "no-cache" @@ -506,7 +506,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:07:15 GMT" + "Wed, 01 Nov 2017 21:35:36 GMT" ] }, "StatusCode": 200 @@ -518,7 +518,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed48f807-c5c7-41d8-a244-ecad0144ed7d" + "c4840c6a-da7e-430a-b6ea-ae5ed771e748" ], "accept-language": [ "en-US" @@ -548,16 +548,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:4d3108a7-6611-4fa5-ae52-33091c533f8a" + "westus2:55a26076-8673-4d71-bfa5-fdd516b13c63" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "aaa39c12-e935-4e2c-a04e-758a9301bfd6" + "78009ecd-7c37-4df3-a793-280be1ac5317" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T200716Z:aaa39c12-e935-4e2c-a04e-758a9301bfd6" + "WESTUS2:20171101T213537Z:78009ecd-7c37-4df3-a793-280be1ac5317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -566,7 +566,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:07:16 GMT" + "Wed, 01 Nov 2017 21:35:36 GMT" ] }, "StatusCode": 200 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 4ae615bca7..1324ac04da 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": [ - "f9cb515a-1412-4b31-b5e7-8bc583ae99fd" + "93c51617-bd32-4a4c-8fb8-69140563016e" ], "accept-language": [ "en-US" @@ -33,17 +33,245 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14995" + ], + "x-ms-request-id": [ + "12735acc-d185-48cf-9a91-81e08ab054c9" + ], + "x-ms-correlation-request-id": [ + "12735acc-d185-48cf-9a91-81e08ab054c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213445Z:12735acc-d185-48cf-9a91-81e08ab054c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:34:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af2deb9e-1aa0-47f3-b30e-fcdb0cf1bc87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14994" + ], + "x-ms-request-id": [ + "a0ef9d3c-ab47-40e6-9079-66444c744745" + ], + "x-ms-correlation-request-id": [ + "a0ef9d3c-ab47-40e6-9079-66444c744745" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213445Z:a0ef9d3c-ab47-40e6-9079-66444c744745" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:34:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e9c8ab8-5fc5-4fcd-b6fb-d49fdc3a5a70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14993" + ], + "x-ms-request-id": [ + "a18d68ae-5367-481d-9db1-575636cfa405" + ], + "x-ms-correlation-request-id": [ + "a18d68ae-5367-481d-9db1-575636cfa405" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213445Z:a18d68ae-5367-481d-9db1-575636cfa405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:34:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11983e61-3757-41da-b9d7-7e96dd0e598f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14992" + ], + "x-ms-request-id": [ + "2026c18a-56cb-4e8d-9e56-4eb201d3a567" + ], + "x-ms-correlation-request-id": [ + "2026c18a-56cb-4e8d-9e56-4eb201d3a567" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171101T213445Z:2026c18a-56cb-4e8d-9e56-4eb201d3a567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 01 Nov 2017 21:34:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e811cb01-57ef-4066-babb-31fe6132d8b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2115.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "340" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-ratelimit-remaining-tenant-reads": [ "14991" ], "x-ms-request-id": [ - "117d923f-ef72-4980-8f00-dcce36d7e070" + "cf751d4b-54d5-41a2-a75b-186f09734a30" ], "x-ms-correlation-request-id": [ - "117d923f-ef72-4980-8f00-dcce36d7e070" + "cf751d4b-54d5-41a2-a75b-186f09734a30" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201355Z:117d923f-ef72-4980-8f00-dcce36d7e070" + "WESTUS2:20171101T213445Z:cf751d4b-54d5-41a2-a75b-186f09734a30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,235 +280,7 @@ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40f07f9e-8e8f-4f48-bedc-fd423fad517b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" - ], - "x-ms-request-id": [ - "f09693d3-b25b-4711-ac71-f4539f5d6b50" - ], - "x-ms-correlation-request-id": [ - "f09693d3-b25b-4711-ac71-f4539f5d6b50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:f09693d3-b25b-4711-ac71-f4539f5d6b50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da3b6711-e6ec-4f2c-bc2d-ed8ed4b65374" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" - ], - "x-ms-request-id": [ - "840f699b-c7ef-4d56-b25c-896086bfc8c8" - ], - "x-ms-correlation-request-id": [ - "840f699b-c7ef-4d56-b25c-896086bfc8c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:840f699b-c7ef-4d56-b25c-896086bfc8c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "69651c42-5e00-4592-bba5-655130a03dd9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" - ], - "x-ms-request-id": [ - "58faa129-efde-4b23-aacb-f55ffc51b9b5" - ], - "x-ms-correlation-request-id": [ - "58faa129-efde-4b23-aacb-f55ffc51b9b5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:58faa129-efde-4b23-aacb-f55ffc51b9b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d979458-fb0e-4321-bd80-823559a22e07" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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 },\r\n \"authorizationSource\": \"Legacy, RoleBased\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "348" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" - ], - "x-ms-request-id": [ - "ef856a80-b27f-45b9-9e9e-8e866c3cfb6f" - ], - "x-ms-correlation-request-id": [ - "ef856a80-b27f-45b9-9e9e-8e866c3cfb6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:ef856a80-b27f-45b9-9e9e-8e866c3cfb6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" + "Wed, 01 Nov 2017 21:34:45 GMT" ] }, "StatusCode": 200 @@ -292,7 +292,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "277cf729-86cc-49ec-9165-89719f9fa425" + "5b130161-1826-45fb-a426-c454bb4b4a9f" ], "accept-language": [ "en-US" @@ -319,7 +319,7 @@ "no-cache" ], "x-ms-request-id": [ - "6b32c601-c7e6-4e9c-be8a-f7ceabae8f99" + "5dc0b2fa-3f00-480c-9cc7-86944a352262" ], "X-Content-Type-Options": [ "nosniff" @@ -328,19 +328,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14999" ], "x-ms-correlation-request-id": [ - "4285ac44-07e1-4de2-839d-629711b55e14" + "79740301-b643-49cb-8de9-62d5cbb24673" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:4285ac44-07e1-4de2-839d-629711b55e14" + "WESTUS2:20171101T213446Z:79740301-b643-49cb-8de9-62d5cbb24673" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" + "Wed, 01 Nov 2017 21:34:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -355,13 +355,13 @@ "StatusCode": 200 }, { - "RequestUri": "//providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", - "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d580a82-3439-4883-880f-5768eecaebca" + "14c10b7b-08ae-4eb5-8f86-fc54345cfdd9" ], "accept-language": [ "en-US" @@ -373,10 +373,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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\": \"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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "72893" + "127610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,7 +388,7 @@ "no-cache" ], "x-ms-request-id": [ - "44f6a9fc-9a77-4658-ab02-96e4afd4e19f" + "426ad9a8-5a3d-4e1f-9258-4b7045cfa402" ], "X-Content-Type-Options": [ "nosniff" @@ -396,20 +396,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "3f11d85c-10d2-486d-a154-f733e28ba0e2" + "1f24da80-47e6-49c7-b6a6-1c4036ac7c62" ], "x-ms-routing-request-id": [ - "WESTUS2:20171016T201356Z:3f11d85c-10d2-486d-a154-f733e28ba0e2" + "WESTUS2:20171101T213446Z:1f24da80-47e6-49c7-b6a6-1c4036ac7c62" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 16 Oct 2017 20:13:55 GMT" + "Wed, 01 Nov 2017 21:34:46 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -430,7 +430,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7539b75d-045b-4a62-8fc8-6d3983c18431" + "bfc487c7-0e21-4134-8244-8c880235f783" ], "accept-language": [ "en-US" @@ -451,19 +451,19 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "uWh47T9cQylboVyeD3aWIImoO8tOo13UeQFaz8gobJo=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "9a6b431c-7702-438f-880b-4097dd86eb86" + "969e28d4-d5af-47c9-b110-afe5aae3b187" ], "client-request-id": [ - "395f9253-c52b-4bba-9496-e44d42b87b0a" + "5e5b6fc7-0e75-48cd-86d8-882bc9492e9c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xg77VSzBEFu3Zr8G3-7kjl0vg4IYG-CtZeCs2w2dj1dEbWMecwX93MTStSPpC3xWVQzJQbmYWQi_THZ6S1rssXjAg-MZiD6CavDwZlBl4DOaXMPjn1uQdN0xdbSmP4Ou.Jwflz9Lj0vOHfqyx_YBebAlImtFjs3I29IsBfPGdvmY" + "VIdWBlbnwTgS_p9e4_DW1SAqJl_M4PSt5lb5bZm-aMIoOtqzziJJVBK7WsbSe5z2LyCtYd_bL-HQ5U31SEEWmbkhO6xJEjdkdf-jfPJ-a7WoElQGccacLUP8JWDiNLn3.3EwR5p7Zy-0p-jt05WUnS4yMMnD1Wxzukh55EQgwtTs" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,7 +472,7 @@ "*" ], "Duration": [ - "657964" + "3737678" ], "Cache-Control": [ "private" @@ -488,7 +488,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:13:56 GMT" + "Wed, 01 Nov 2017 21:34:47 GMT" ] }, "StatusCode": 404 @@ -500,7 +500,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a4b7bbe-c4df-4092-9501-a96ab81b7432" + "f459b76f-559d-4537-95cf-4dc6df1bb29f" ], "accept-language": [ "en-US" @@ -521,19 +521,19 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "f14fb907-8132-4d7e-b216-e61da820aec4" + "a5d46fc1-b68b-4d9f-a0cc-42ee45527a67" ], "client-request-id": [ - "bb2617a3-a3d0-4e79-9aa0-280c95cce670" + "ae42ebaa-99bb-4777-9fde-41964a1e52e6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TR42BPHrhtcqv696UzcT701aBdHbWFrahwJ_mx17SPP3xP-M3bnqapgZmLfWN9K22Ktuk0UczJkp_aXcJf8Ko_OPm33aHGCTkEQBIr_bnBt7yxhCpieX_MkfzLnYwLFX.nLktyUFt91huji68geB2Pw7j1XhKfwF7_aS7xsQIbCg" + "SmH-q_GGLDjYNu69NlAEvE057Ih8U89JdnkJBMNV36Wq1okItfSstenCYDhGZx4FVJ4O8lZ2rNAnaxy9v1w1-SJgGkRyI0j-ah8UbFr40t7lkecaaFZfpKKpe1g7WM9c.kWmlAuiqVtTt-_gOivfWjS9iPKKWeAKVAjCNkjT3rQ0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "*" ], "Duration": [ - "930115" + "552034" ], "Cache-Control": [ "private" @@ -558,7 +558,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:13:56 GMT" + "Wed, 01 Nov 2017 21:34:47 GMT" ] }, "StatusCode": 404 @@ -576,7 +576,7 @@ "116" ], "x-ms-client-request-id": [ - "87d0d282-13d0-4c28-930b-fd50279eebb0" + "b11d2b6e-fc02-447b-b57f-fa64b2096985" ], "accept-language": [ "en-US" @@ -603,19 +603,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" + "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" ], "request-id": [ - "775bcead-1976-4ae8-a3e0-228f2ce772ba" + "d38ecd02-d1ac-43a3-b860-e64e0c2e6093" ], "client-request-id": [ - "1e1dc7b7-9b37-4802-8b85-11420a677903" + "014f4d26-af95-4be7-bcd1-3908df41df23" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xpwP7VkIEP1ZHkk_5D4W8l1ob19PQpu0Ma5fpZo17pzOgoZ878XDJO7kX6kDBbG_voFshW0Jansz2FEH7dzJ_ydiFPsMffG9EeQrc_F9H6ogvAByR8h02oR5SzIptMg1.29waJE2ddn9csHveSPHGspuCeHf8xUz_NPSma-FrxNM" + "nwIHB3xdhgYcofo_kEGgN0FlR-Oc_f39bvGI8z8AKuiYtY5B_jgqgNw7no1tbU5j8RO8ZWTbDHm8pNVuhxrjePxO1F6DxSrgPfvqJ7umEN9GGJHkkj5yNabwO6gwQbI7.fIHzPr0GzrGYIcuRTsuq03sKhlly5pRJRDXsLDcomjs" ], "X-Content-Type-Options": [ "nosniff" @@ -630,7 +630,7 @@ "*" ], "Duration": [ - "751342" + "773949" ], "Cache-Control": [ "no-cache" @@ -646,7 +646,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:13:56 GMT" + "Wed, 01 Nov 2017 21:34:47 GMT" ] }, "StatusCode": 200 @@ -658,7 +658,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86300beb-5176-47ad-b744-fde7292ee545" + "e38c71ab-887f-4c94-89f2-ee580ece4312" ], "accept-language": [ "en-US" @@ -685,19 +685,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "uWh47T9cQylboVyeD3aWIImoO8tOo13UeQFaz8gobJo=" + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" ], "request-id": [ - "24f9fd80-3b71-465d-ab4e-6c0010d52867" + "afcb57e9-57fa-4e5d-8f68-375f5f5bb228" ], "client-request-id": [ - "6c0dae73-535e-452a-a871-b203f6c0af44" + "d30db2c9-de8f-4032-8f93-5a4804ebe731" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "QnVmOPC27Mayu8686R4Q3QsM2h-SdJmaA6d1GZzYbpPjuuJl4kc-drsCcykA1jb-d_ZO4VPWb6jOAnDo0TdEeCMGb3-1oOHzoTQdWLZIpk6gsojfgvUK24oyXadEhPdz.G46zp5IqRwVuKMlMn_mZoqsBfJvcXtEUNLYD4Rx2uKc" + "avai6lAPfTTcsp_AolbKLGK98YAQzy1_rsOUg93tXwUzv63sJQdeojZNvnhe6Npp77MD7TAMv124ogsfYGfM-bAp_48Ft3Ap-lda86aIDjig030x_uvOeu6CAlOrCF1x.7yLdD41hLNTT6SNzi2Kn6E47NJY0a-745sSivj50X9k" ], "X-Content-Type-Options": [ "nosniff" @@ -712,7 +712,7 @@ "*" ], "Duration": [ - "743584" + "1978030" ], "Cache-Control": [ "no-cache" @@ -728,7 +728,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:13:56 GMT" + "Wed, 01 Nov 2017 21:34:47 GMT" ] }, "StatusCode": 200 @@ -740,7 +740,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0df0ca03-d7ad-4f26-a201-0eaa4d76ae20" + "dba912fc-50ad-47ca-b94a-7dfabd4883d4" ], "accept-language": [ "en-US" @@ -767,19 +767,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "b6ca9ddb-9fa4-401d-9a33-7d8cf1774abd" + "2ce804ca-cbfc-4ad4-bae8-93cd3e2a0af9" ], "client-request-id": [ - "ffa8a24c-7a46-43ba-bab4-56c3c8ce2d6e" + "8fc13c67-dffa-4084-bf2e-be20109d39e5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ug6M-HdZ8fRiBkL4mS3ZnU1WIuS6Wo47Byr73QTM07-UnlW-DPqsD29qKtru8hDtXGr_XXB2oY0WJoxOXJ7TcvZyP58T3cka7mvi_UUhijYUHl4qnzK-luzmEbdo2Kc-.ikj-xr6hvgaCaWrfaXefJuX4rPOzxJ8AGWHYv4_XwAI" + "5cP7QIPdsIKFU71QZZUl6jyvRvwAK6gvrQMFS4ok2EHcv02F5kLFOSn-3ntmpt2BuWkqtzY7LHzfBs0dlRhTBRu0bsAfipN3ppucjTBmSkEB6bzMrwZ-NDwUYqBN9jCI.e_KplI1ijc-8uK0skJ2I3erEeD0zxsJOIeXlG451CHo" ], "X-Content-Type-Options": [ "nosniff" @@ -794,7 +794,7 @@ "*" ], "Duration": [ - "608914" + "1015748" ], "Cache-Control": [ "no-cache" @@ -810,7 +810,7 @@ "ASP.NET" ], "Date": [ - "Mon, 16 Oct 2017 20:13:56 GMT" + "Wed, 01 Nov 2017 21:34:47 GMT" ] }, "StatusCode": 200 From 4a9743f3135f3d38fd3a6cb1391844fcb825ef34 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Wed, 1 Nov 2017 16:56:18 -0700 Subject: [PATCH 15/37] base changes on Cormac's PR --- tools/AzureRM.Example.psm1 | Bin 1356 -> 1076 bytes tools/UpdateModules.ps1 | 72 ++++++++++++++++++++++++++++--------- 2 files changed, 55 insertions(+), 17 deletions(-) diff --git a/tools/AzureRM.Example.psm1 b/tools/AzureRM.Example.psm1 index 6a6d81fe48fb3ef85fd55092f8021dee16c8e4db..ffbfe8a1bdb49cb2003a3896d3e65f24190831ea 100644 GIT binary patch delta 40 wcmX@ZwS{BDEJk5f22TcGh5!bCh9HIz23H0b2HnZ~ndB#HFl%h)VRm2w0Lg#}1ONa4 delta 308 zcmZus%?bfw6g}UpMC`376lLt}6&4mGWRLmi6Nd4(&@>M*JMW+rYfs>DJb*Jd3rb(z z@7#0GJ@?*w>>0nFRggm#EiAEy3lBSH4m2~3m7o=_OD8L>xhL&gYl$Q;Oc zqHw7xlQEb|j9iU4jIiKyairEk67k?8Dk6_A`WXJ03^2l&4H}g{)e73I&t>r}Y_6p_ zsESf#jFZFyJqPIV#5#W)4K(T0L`P5u;X|d;zDP9(ZE5k<99~pL`C-DcZ!cA|-tWaX A5&!@I diff --git a/tools/UpdateModules.ps1 b/tools/UpdateModules.ps1 index 28b971946f..dd287d61e2 100644 --- a/tools/UpdateModules.ps1 +++ b/tools/UpdateModules.ps1 @@ -32,31 +32,47 @@ function Create-ModulePsm1 PROCESS { - $manifestDir = Get-Item -Path $ModulePath - $moduleName = $manifestDir.Name + ".psd1" - $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName - $module = Test-ModuleManifest -Path $manifestPath + $manifestDir = Get-Item -Path $ModulePath + $moduleName = $manifestDir.Name + ".psd1" + $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name $templateOutputPath = $manifestPath -replace ".psd1", ".psm1" - [string]$strict - [string]$loose - foreach ($mod in $module.RequiredModules) + [string]$importedModules + if ($ModuleMetadata.RequiredModules -ne $null) { - $strict += " Import-Module " + $mod.Name + " -RequiredVersion " + [string]$mod.Version + "`r`n" - $loose += " Import-Module " + $mod.Name + "`r`n" + foreach ($mod in $ModuleMetadata.RequiredModules) + { + if ($mod["ModuleVersion"]) + { + $importedModules += Create-MinimumVersionEntry -ModuleName $mod["ModuleName"] -MinimumVersion $mod["ModuleVersion"] + } + elseif ($mod["RequiredVersion"]) + { + $importedModules += "Import-Module " + $mod["ModuleName"] + " -RequiredVersion " + $mod["RequiredVersion"] + "`r`n" + } + } } + + if ($ModuleMetadata.NestedModules -ne $null) + { + foreach ($dll in $ModuleMetadata.NestedModules) + { + $importedModules += "Import-Module (Join-Path -Path `$PSScriptRoot -ChildPath " + $dll.Substring(2) + ")`r`n" + } + } + $template = Get-Content -Path $TemplatePath - $template = $template -replace "%MODULE-NAME%", $module.Name + $template = $template -replace "%MODULE-NAME%", $file.BaseName $template = $template -replace "%DATE%", [string](Get-Date) - $template = $template -replace "%STRICT-DEPENDENCIES%", $strict - $template = $template -replace "%DEPENDENCIES%", $loose + $template = $template -replace "%IMPORTED-DEPENDENCIES%", $importedModules if ($AddDefaultParameters) { - $nestedModules = $module.NestedModules + $nestedModules = $ModuleMetadata.NestedModules $AllCmdlets = @() $nestedModules | ForEach-Object { - $dllName = $_.Name + ".dll" - $dllPath = Join-Path -Path $ModulePath -ChildPath $dllName + $dllPath = Join-Path -Path $ModulePath -ChildPath $_ $Assembly = [Reflection.Assembly]::LoadFrom($dllPath) $dllCmdlets = $Assembly.GetTypes() | Where-Object {$_.CustomAttributes.AttributeType.Name -contains "CmdletAttribute"} $AllCmdlets += $dllCmdlets @@ -105,10 +121,33 @@ function Create-ModulePsm1 } } +function Create-MinimumVersionEntry +{ + [CmdletBinding()] + param( + [string]$ModuleName, + [string]$MinimumVersion + ) + + PROCESS + { + return "`$module = Get-Module $ModuleName ` +if (`$module -ne `$null -and `$module.Version.ToString().CompareTo(`"$MinimumVersion`") -lt 0) ` +{ ` + Write-Warning `"A later version of $ModuleName was found to be imported already. Please see for more details.`" ` + Write-Error `"A later version of $ModuleName was found to be imported already. Please see for more details.`" ` +} ` +elseif (`$module -eq `$null) ` +{ ` + Import-Module $ModuleName -MinimumVersion $MinimumVersion -Scope Global ` +}`r`n" + } +} + if ([string]::IsNullOrEmpty($buildConfig)) { Write-Verbose "Setting build configuration to 'Release'" - $buildConfig = "Debug" + $buildConfig = "Release" } if ([string]::IsNullOrEmpty($scope)) @@ -196,4 +235,3 @@ if (($scope -eq 'All') -or ($scope -eq 'AzureRM')) { } } - From fc1131844440e03004738d4de08cefb8b567df62 Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Thu, 2 Nov 2017 10:31:18 -0700 Subject: [PATCH 16/37] update as per the comments --- src/ResourceManager/Resources/ChangeLog.md | 2 ++ .../Models.Authorization/AuthorizationClient.cs | 16 +++++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/ResourceManager/Resources/ChangeLog.md b/src/ResourceManager/Resources/ChangeLog.md index 2cb7dedc78..e01e4d1c72 100644 --- a/src/ResourceManager/Resources/ChangeLog.md +++ b/src/ResourceManager/Resources/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Current Release +* Fixed issue where Get-AzureRMRoleAssignment would result in a assignments without roledefiniton name for custom roles + - Users can now use Get-AzureRMRoleAssignment with assignments having roledefinition names irrespective of the type of role ## Version 4.4.1 diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs index 6b18476eca..4099423c73 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs @@ -224,12 +224,15 @@ namespace Microsoft.Azure.Commands.Resources.Models.Authorization var tempResult = AuthorizationManagementClient.RoleAssignments.List( new Rest.Azure.OData.ODataQuery(f => f.PrincipalId == principalId)); - if (!string.IsNullOrEmpty(options.Scope)) { + if (!string.IsNullOrEmpty(options.Scope)) + { result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) - .ToPSRoleAssignments(this, ActiveDirectoryClient, options.Scope, options.ExcludeAssignmentsForDeletedPrincipals)); - } else { + .ToPSRoleAssignments(this, ActiveDirectoryClient, options.Scope, options.ExcludeAssignmentsForDeletedPrincipals)); + } + else + { result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) - .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); + .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); } while (!string.IsNullOrWhiteSpace(tempResult.NextPageLink)) @@ -274,9 +277,8 @@ namespace Microsoft.Azure.Commands.Resources.Models.Authorization while (!string.IsNullOrWhiteSpace(tempResult.NextPageLink)) { tempResult = AuthorizationManagementClient.RoleAssignments.ListNext(tempResult.NextPageLink); - result.AddRange(tempResult - .FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) - .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); + result.AddRange(tempResult.FilterRoleAssignmentsOnRoleId(AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(currentSubscription, options.RoleDefinitionId)) + .ToPSRoleAssignments(this, ActiveDirectoryClient, AuthorizationHelper.GetSubscriptionScope(currentSubscription), options.ExcludeAssignmentsForDeletedPrincipals)); } } From 3321b7d1c298e0cfdc212bcc4c32303ee0276dc1 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Thu, 2 Nov 2017 15:38:16 -0700 Subject: [PATCH 17/37] tests --- tools/Modules/TestFx-Tasks.psm1 | 14 +++++++-- tools/Modules/Tests/RepoModuleTests.cs | 0 tools/Modules/Tests/RepoModuleTests.ps1 | 40 +++++++++++++++++++++---- 3 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 tools/Modules/Tests/RepoModuleTests.cs diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index 928c28c849..e50d39042a 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -55,7 +55,9 @@ [string]$RdfePortalUri, [string]$GalleryUri, [string]$DataLakeStoreServiceUri, - [string]$DataLakeAnalyticsJobAndCatalogServiceUri + [string]$DataLakeAnalyticsJobAndCatalogServiceUri, + + [switch]$Force ) [hashtable]$credentials = @{} @@ -74,7 +76,13 @@ { # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) Start-Sleep 5 - New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + if ($Force) + { + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope -Force | Write-Verbose -ErrorAction SilentlyContinue + } + else { + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + } $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue $Retries++; } @@ -150,7 +158,7 @@ $credentialsJson = $credentials | ConvertTo-Json $directoryPath = $Env:USERPROFILE + "\.azure" - if (!(Test-Path $directoryPath) -and $PSCmdlet.ShouldContinue("Do you want to create directory: " + $directoryPath + " which will contain your credentials file?", "Create directory?")) { + if (!(Test-Path $directoryPath) -and (Force -or $PSCmdlet.ShouldContinue("Do you want to create directory: " + $directoryPath + " which will contain your credentials file?", "Create directory?"))) { New-Item -ItemType Directory -Path $directoryPath } $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" diff --git a/tools/Modules/Tests/RepoModuleTests.cs b/tools/Modules/Tests/RepoModuleTests.cs new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/Modules/Tests/RepoModuleTests.ps1 b/tools/Modules/Tests/RepoModuleTests.ps1 index 9d11b27505..97540ff805 100644 --- a/tools/Modules/Tests/RepoModuleTests.ps1 +++ b/tools/Modules/Tests/RepoModuleTests.ps1 @@ -10,14 +10,44 @@ } -Function Test-NewServicePrincipalCredential +Function Test-NewCredentialNewServicePrincipal { + Import-Module $PSScriptRoot\..\TestFx-Tasks.psd1 # Test that Service Principal is correctly created $context = Get-AzureRmContext New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalPassword "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" - $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialstestserviceprincipal - Remove-AzureRmADServicePrincipal -ObjectId $servicePrincipal.Id -Force + $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialtestserviceprincipal | where { $_.DisplayName -eq "credentialtestserviceprincipal" } + if ($servicePrincipal -eq $null) + { + throw "ServicePrincipal not properly created." + } #Test that connection string is properly set - -} \ No newline at end of file + [System.Reflection.Assembly]::LoadFrom("$PSScriptRoot\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll") + $envHelper = New-Object Microsoft.Azure.Commands.ScenarioTest.EnviromentSetupHelper -ArgumentList @() + + + Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force +} + +Function Test-NewCredentialExistingServicePrincipal +{ + +} + +Function Test-NewCredentialUserId +{ + +} + +Function Test-SetEnvironmentServicePrincipal +{ + +} + +Function Test-SetEnvironmentUserId +{ + +} + +Test-NewCredentialNewServicePrincipal \ No newline at end of file From 7afe38fba2ad0e27e5c0c81e27a6c113604c768d Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Fri, 3 Nov 2017 09:59:22 -0700 Subject: [PATCH 18/37] work on tests --- tools/Modules/TestFx-Tasks.psm1 | 38 +++++---------- tools/Modules/Tests/RepoModuleTests.ps1 | 64 ++++++++++++++++++++++++- 2 files changed, 74 insertions(+), 28 deletions(-) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index e50d39042a..cc2c6ea687 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -11,7 +11,7 @@ [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal password')] [ValidateNotNullOrEmpty()] - [string]$NewServicePrincipalPassword, + [string]$NewServicePrincipalSecret, [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] @@ -19,7 +19,7 @@ [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] [ValidateNotNullOrEmpty()] - [string]$ServicePrincipal, + [string]$ServicePrincipalId, [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal Secret/ClientId Secret you would like to use')] [ValidateNotNullOrEmpty()] @@ -67,28 +67,22 @@ if ([string]::IsNullOrEmpty($NewServicePrincipalDisplayName) -eq $false) { $Scope = "/subscriptions/" + $SubscriptionId - $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $NewServicePrincipalPassword + $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $NewServicePrincipalSecret Write-Host "New ServicePrincipal created: " + $NewServicePrincipal $NewRole = $null $Retries = 0; While ($NewRole -eq $null -and $Retries -le 6) { - # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) - Start-Sleep 5 - if ($Force) - { - New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope -Force | Write-Verbose -ErrorAction SilentlyContinue - } - else { - New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue - } - $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue - $Retries++; + # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) + Start-Sleep 5 + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue + $Retries++; } $credentials.ServicePrincipal = $NewServicePrincipal.ApplicationId - $credentials.ServicePrincipalSecret = $NewServicePrincipalPassword + $credentials.ServicePrincipalSecret = $NewServicePrincipalSecret } if ([string]::IsNullOrEmpty($UserId) -eq $false) { @@ -96,7 +90,7 @@ } if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { - $credentials.ServicePrincipal = $ServicePrincipal + $credentials.ServicePrincipal = $ServicePrincipalId $credentials.ServicePrincipalSecret = $ServicePrincipalSecret } @@ -104,14 +98,6 @@ $credentials.TenantId = $TenantId } - if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { - $credentials.ServicePrincipal = $ServicePrincipal - } - - if ([string]::IsNullOrEmpty($ServicePrincipalSecret) -eq $false) { - $credentials.ServicePrincipalSecret = $ServicePrincipalSecret - } - if ([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) { $credentials.ResourceManagementUri = $ResourceManagementUri } @@ -185,7 +171,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] [ValidateNotNullOrEmpty()] - [string]$ServicePrincipal, + [string]$ServicePrincipalId, [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal Secret/ClientId Secret you would like to use')] [ValidateNotNullOrEmpty()] @@ -235,7 +221,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a if([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { - $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipal={0}"), $ServicePrincipal) + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipal={0}"), $ServicePrincipalId) } if([string]::IsNullOrEmpty($ServicePrincipalSecret) -eq $false) diff --git a/tools/Modules/Tests/RepoModuleTests.ps1 b/tools/Modules/Tests/RepoModuleTests.ps1 index 97540ff805..7fb275549a 100644 --- a/tools/Modules/Tests/RepoModuleTests.ps1 +++ b/tools/Modules/Tests/RepoModuleTests.ps1 @@ -15,39 +15,99 @@ Function Test-NewCredentialNewServicePrincipal Import-Module $PSScriptRoot\..\TestFx-Tasks.psd1 # Test that Service Principal is correctly created $context = Get-AzureRmContext - New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalPassword "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" + New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalPassword "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialtestserviceprincipal | where { $_.DisplayName -eq "credentialtestserviceprincipal" } if ($servicePrincipal -eq $null) { throw "ServicePrincipal not properly created." } - #Test that connection string is properly set + # Test that file is correctly set + + # Test that connection string is properly set [System.Reflection.Assembly]::LoadFrom("$PSScriptRoot\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll") $envHelper = New-Object Microsoft.Azure.Commands.ScenarioTest.EnviromentSetupHelper -ArgumentList @() + # Test that TestEnviroment is set-up properly + # Clean-up Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force } Function Test-NewCredentialExistingServicePrincipal { + # Set-up + $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password "testpassword" + $context = Get-AzureRmContext + $Scope = "/subscriptions/" + $context.Subscription.Id + $NewRole = $null + $Retries = 0; + While ($NewRole -eq $null -and $Retries -le 6) + { + # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) + Start-Sleep 5 + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue + $Retries++; + } + # Test that file is correctly set + New-AzureCredential -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force + + # Test that connection string is properly set + + # Test that TestEnviroment is set-up properly + + # Clean-up + Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force } Function Test-NewCredentialUserId { + # Test that file is correctly set + New-AzureCredential -UserId "testuser" -SubscriptionId $context.Subscription.Id -RecordMode "Playback" -Force + # Test that connection string is properly set + + # Test that TestEnviroment is set-up properly + + # Clean-up } Function Test-SetEnvironmentServicePrincipal { + # Set-up + $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password "testpassword" + $context = Get-AzureRmContext + $Scope = "/subscriptions/" + $context.Subscription.Id + $NewRole = $null + $Retries = 0; + While ($NewRole -eq $null -and $Retries -le 6) + { + # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) + Start-Sleep 5 + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue + $Retries++; + } + # Test that connection string is properly set + Set-TestEnvironment -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" + + # Test that TestEnviroment is set-up properly + + # Clean-up + Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force } Function Test-SetEnvironmentUserId { + # Test that connection string is properly set + Set-TestEnvironment -UserId "testuser" -SubscriptionId $context.Subscription.Id RecordMode "Playback" + # Test that TestEnviroment is set-up properly + + # Clean-up } Test-NewCredentialNewServicePrincipal \ No newline at end of file From b61899b6cef0459921406710089cb016f3e60c59 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Fri, 3 Nov 2017 11:23:29 -0700 Subject: [PATCH 19/37] Address review comments --- tools/AzureRM.Example.psm1 | 20 ++++--- tools/UpdateModules.ps1 | 103 +++++++++++++++++++++++-------------- 2 files changed, 77 insertions(+), 46 deletions(-) diff --git a/tools/AzureRM.Example.psm1 b/tools/AzureRM.Example.psm1 index cea741faa0..54e521847f 100644 --- a/tools/AzureRM.Example.psm1 +++ b/tools/AzureRM.Example.psm1 @@ -9,12 +9,16 @@ $PSDefaultParameterValues.Clear() Set-StrictMode -Version Latest -# Import dependencies using required version, if it is allowed -if ($PSVersionTable.PSVersion.Major -ge 5) -{ -%STRICT-DEPENDENCIES% -} -else -{ -%DEPENDENCIES% +%IMPORTED-DEPENDENCIES% + +$FilteredCommands = %COMMANDS% + +$FilteredCommands | ForEach-Object { + $global:PSDefaultParameterValues.Add($_, + { + $context = Get-AzureRmContext + if ($context.ExtendedProperties.ContainsKey("Default Resource Group")) { + $context.ExtendedProperties["Default Resource Group"] + } + }) } \ No newline at end of file diff --git a/tools/UpdateModules.ps1 b/tools/UpdateModules.ps1 index dd287d61e2..320be44f5d 100644 --- a/tools/UpdateModules.ps1 +++ b/tools/UpdateModules.ps1 @@ -67,8 +67,27 @@ function Create-ModulePsm1 $template = $template -replace "%DATE%", [string](Get-Date) $template = $template -replace "%IMPORTED-DEPENDENCIES%", $importedModules - if ($AddDefaultParameters) - { + $contructedCommands = Find-DefaultResourceGroupCmdlets -AddDefaultParameters $AddDefaultParameters -ModuleMetadata $ModuleMetadata -ModulePath $ModulePath + $template = $template -replace "%COMMANDS%", $contructedCommands + + Write-Host "Writing psm1 manifest to $templateOutputPath" + $template | Out-File -FilePath $templateOutputPath -Force + $file = Get-Item -Path $templateOutputPath + } +} + +function Find-DefaultResourceGroupCmdlets +{ + [CmdletBinding()] + param( + [bool]$AddDefaultParameters, + [Hashtable]$ModuleMetadata, + [string]$ModulePath + ) + PROCESS + { + if ($AddDefaultParameters) + { $nestedModules = $ModuleMetadata.NestedModules $AllCmdlets = @() $nestedModules | ForEach-Object { @@ -78,47 +97,55 @@ function Create-ModulePsm1 $AllCmdlets += $dllCmdlets } - $FilteredCommands = @() - $AllCmdlets | ForEach-Object { - $rgParameter = $_.GetProperties() | Where-Object {$_.Name -eq "ResourceGroupName"} - if ($rgParameter -ne $null) { - $parameterSets = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} - $isMandatory = $true - $parameterSets | ForEach-Object { - $hasParameterSet = $_.NamedArguments | Where-Object {$_.MemberName -eq "ParameterSetName"} - $MandatoryParam = $_.NamedArguments | Where-Object {$_.MemberName -eq "Mandatory"} - if (($hasParameterSet -ne $null) -or (!$MandatoryParam.TypedValue.Value)) { - $isMandatory = $false - } - } - if ($isMandatory) { - $FilteredCommands += $_ - } - } - } - + $FilteredCommands = $AllCmdlets | Where-Object {Test-RequiredParameter -Cmdlet $_} + if ($FilteredCommands.Length -eq 0) { - $contructedCommands = "@()" + $contructedCommands = "@()" } else { - $contructedCommands = "@(" - $FilteredCommands | ForEach-Object { - $contructedCommands += "'" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").VerbName + "-" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").NounName + ":ResourceGroupName" + "'," - } - $contructedCommands = $contructedCommands -replace ".$",")" + $contructedCommands = "@(" + $FilteredCommands | ForEach-Object { + $contructedCommands += "'" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").VerbName + "-" + $_.GetCustomAttributes("System.Management.Automation.CmdletAttribute").NounName + ":ResourceGroupName" + "'," + } + $contructedCommands = $contructedCommands -replace ".$",")" + } + + return $contructedCommands } - - $template = $template -replace "%COMMANDS%", $contructedCommands - } - else { - $template = $template -replace "%COMMANDS%", "@()" - } - - Write-Host "Writing psm1 manifest to $templateOutputPath" - $template | Out-File -FilePath $templateOutputPath -Force - $file = Get-Item -Path $templateOutputPath - } + else { + return "@()" + } + } +} + +function Test-RequiredParameter +{ + [CmdletBinding()] + param( + [Object]$Cmdlet + ) + + PROCESS + { + $rgParameter = $Cmdlet.GetProperties() | Where-Object {$_.Name -eq "ResourceGroupName"} + if ($rgParameter -ne $null) { + $parameterSets = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} + $isMandatory = $true + $parameterSets | ForEach-Object { + $hasParameterSet = $_.NamedArguments | Where-Object {$_.MemberName -eq "ParameterSetName"} + $MandatoryParam = $_.NamedArguments | Where-Object {$_.MemberName -eq "Mandatory"} + if (($hasParameterSet -ne $null) -or (!$MandatoryParam.TypedValue.Value)) { + $isMandatory = $false + } + } + if ($isMandatory) { + return $true + } + } + + return $false + } } function Create-MinimumVersionEntry From d977917ea8fdb28567e7610f89f657ea9b8f545b Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Fri, 3 Nov 2017 19:13:56 -0700 Subject: [PATCH 20/37] Update testing documentation --- documentation/Using-Azure-TestFramework.md | 125 ++++++++++++++++----- 1 file changed, 94 insertions(+), 31 deletions(-) diff --git a/documentation/Using-Azure-TestFramework.md b/documentation/Using-Azure-TestFramework.md index 094c11b950..0733d4153d 100644 --- a/documentation/Using-Azure-TestFramework.md +++ b/documentation/Using-Azure-TestFramework.md @@ -1,37 +1,100 @@ # Using Microsoft.Rest.ClientRuntime.Azure.TestFramework # -1. Getting Started -2. Accquring TestFramework -3. Setup prior to Record/Playback tests - 1. Environment Variables - 2. Playback Test - 3. Record Test with Interactive login using OrgId - 4. Record Test with ServicePrincipal -4. Record/Playback tests -5. Change Test Environment settings at run-time -6. Troubleshooting -7. Supported Key=Value pairs in ConnectionString -8. Environment Variable Reference +- [Getting Started](#getting-started) +- [Acquiring TestFramework](#acquiring-testframework) +- [Setup prior to Record/Playback tests](#setup-prior-to-record-or-playback-of-tests) + - [New-AzureCredential](#new-azurecredential) + - [Create New Service Principal](#create-new-service-principal) + - [Use Existing Service Principal](#use-existing-service-principal) + - [UserId](#userid) + - [Set-TestEnvironment](#set-testenvironment) + - [Existing Service Principal](#existing-service-principal) + - [UserId](#userid) + - [Manually Set Environment Variables](#manually-set-environment-variables) + - [Environment Variables](#environment-variables) + - [Playback Test](#playback-test) + - [Record Test with Interactive login using OrgId](#record-test-with-interactive-login-using-orgid) + - [Record Test with ServicePrincipal](#record-test-with-serviceprincipal) +- [Record/Playback tests](#record-or-playback-tests) +- [Change Test Environment settings at run-time](#change-test-environment-settings-at-run-time) +- [Troubleshooting](#troubleshooting) +- [Supported Key Value pairs in ConnectionString](#supported-key-value-pairs-in-connectionstring) +- [Environment Variable Reference](#supported-environment-in-test-framework) -## 1. Getting Started +## Getting Started 1. Double click .\tools\PS-VSPrompt shortcut - 1. This starts VS Dev command prompt in PowerShell + 1. This starts VS Dev command prompt in PowerShell in the azure-powershell/tools directory 2. Import module that helps in performing basic repository tasks - 1. Import-Module Repo-Tasks.psd1 - 2. Type Get-Command -Module Repo-Tasks to see list of cmdlets - 3. Get-Help to get help on individual commands. + 1. Import-Module .\Repo-Tasks.psd1 -## 2. Accquring TestFramework +## Acquiring TestFramework TestFramework is available on NuGet at https://www.nuget.org/packages/Microsoft.Rest.ClientRuntime.Azure.TestFramework/ . Instructions to manually download it are available on NuGet. However TestFramework will be downloaded automatically as part of the build process, so manually downloading it should generally be unnecessary. -## 3. Setup prior to Record/Playback of tests +## Setup prior to Record or Playback of tests -In order to Record/Playback a test, you need to setup a connection string that consists various key/value pairs that provides information to the test environment. +In order to Record/Playback a test, you need to setup a connection string that consists various key/value pairs that provides information to the test environment. You have three options to set up the connection string: run the [New-AzureCredential cmdlet](#new-azurecredential) (recommended), run the [Set-TestEnvironment cmdlet](#set-testenvironment), or [manually set the environment variables](#manually-set-environment-variables). -#### 3.1 Environment Variables +### New-AzureCredential + +This cmdlet, located in Repo-Tasks, will allow you to create a credentials file (located in C:/Users/\/.azure/testcredentials.json) that will be used to set the environment variable when scenario tests are run. This credentials file will be used in all future sessions unless it is deleted or the environment variables are manually set. + +#### Create New Service Principal + +Using a Service Principal is the preferred option for record because it works with both .NET Framework and .NET Core. In order to create a new Service Principal run this command: + +```powershell +New-AzureCredential -NewServicePrincipalDisplayName "ScenarioTestCredentials" -NewServicePrincipalSecret ` +"testpassword" -SubscriptionId -TenantId -RecordMode "Record" +``` + +This command will create a new Service Principal, set the correct role assignment for this Service Principal based upon the subscription provided, and place the Service Principal id and secret into the credentials file. + +#### Use Existing Service Principal + +If you would like to use an existing Service Principal, run: + +```powershell +New-AzureCredential -ServicePrincipalId -ServicePrincipalSecret ` +"testpassword" -SubscriptionId -TenantId -RecordMode "Record" +``` + +#### UserId + +This is no longer the preferred option because it only works when running on .NET Framework. When running on .NET Core you may get an error like `Interactive Login is supported only in NET45 projects`. Additionally, you will have to manually log in when running the scenario tests rather than being automatically validated. + +```powershell +New-AzureCredential -UserId "exampleuser@microsoft.com" -SubscriptionId ` +-TenantId -RecordMode "Record" +``` + +### Set-TestEnvironment + +This cmdlet, located in Repo-Tasks, will directly set the environment variable for the session. + +#### Existing Service Principal + +This is the preferred option for record because it works with both .NET Framework and .NET Core. + +```powershell +Set-TestEnvironment -ServicePrincipalId -ServicePrincipalSecret ` +"testpassword" -SubscriptionId -TenantId -RecordMode "Record" +``` + +#### UserId + +This is no longer the preferred option because it only works when running on .NET Framework. When running on .NET Core you may get an error like `Interactive Login is supported only in NET45 projects`. + +```powershell +Set-TestEnvironment -UserId "exampleuser@microsoft.com" -SubscriptionId ` +-TenantId -RecordMode "Record" +``` + +### Manually Set Environment Variables + +#### Environment Variables > TEST_CSM_ORGID_AUTHENTICATION @@ -41,14 +104,14 @@ This is the connection string that determined how to connect to Azure. This incl This specifies whether test framework will `Record` test sessions or `Playback` previously recorded test sessions. -#### 3.2 Playback Test +#### Playback Test The default mode is Playback mode, so no setting up of connection string is required. You can optionally set environment variables: TEST_CSM_ORGID_AUTHENTICATION= AZURE_TEST_MODE=Playback -#### 3.3 Record Test with Interactive login using OrgId +#### Record Test with Interactive login using OrgId This is no longer the preferred option because it only works when running on .NET Framework. When running on .NET Core you may get an error like `Interactive Login is supported only in NET45 projects`. @@ -57,7 +120,7 @@ To use this option, set the following environment variables before starting Visu TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId={SubId};UserId={orgId};AADTenant={tenantId};Environment={env};HttpRecorderMode=Record; AZURE_TEST_MODE=Record -#### 3.4 Record Test with ServicePrincipal +#### Record Test with ServicePrincipal This is the preferred option for record because it works with both .NET Framework and .NET Core. @@ -79,14 +142,14 @@ To use this option, set the following environment variable before starting Visua TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId={SubId};ServicePrincipal={clientId};ServicePrincipalSecret={clientSecret};AADTenant={tenantId};Environment={env};HttpRecorderMode=Record; AZURE_TEST_MODE=Record -## 4. Record/Playback Tests +## Record or Playback Tests 1. Run the test and make sure that you got a generated .json file that matches the test name in the bin folder under *SessionRecords folder 2. Copy SessionRecords folder inside the test project and add all *.json files in Visual Studio setting "Copy to Output Directory" property to "Copy if newer" 3. To assure that the records work fine, delete the connection string (default mode is Playback mode) OR change HttpRecorderMode within the connection string to "Playback" -## 5. Change Test Environment settings at run-time -#### 1. Once you set your connection string, you can add or update key/value settings +## Change Test Environment settings at run-time +#### Once you set your connection string, you can add or update key/value settings Add new key/value pair TestEnvironment.ConnectionString.KeyValuePairs.Add("Foo", "FooValue"); @@ -100,7 +163,7 @@ To use this option, set the following environment variable before starting Visua ###Note:### Changing the above properties at run-time has the potential to hard code few things in your tests. Best practice would be to use these properties to change values at run-time from immediate window at run-time and avoid hard-coding certain values. -## 6. Troubleshooting +## Troubleshooting #### Issue: exceptions in Microsoft.Azure.Test.HttpRecorder @@ -112,7 +175,7 @@ In order to debug test set the following environment variables before starting V TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId={SubId};UserId={orgId};AADTenant={tenantId};Environment={env};HttpRecorderMode=Record; -#### 7.1 Supported Key=Value pairs in Connectionstring +## Supported Key Value pairs in ConnectionString * ManagementCertificate * SubscriptionId * AADTenant @@ -134,9 +197,9 @@ In order to debug test set the following environment variables before starting V * AADAuthEndpoint * GraphTokenAudienceUri -## 8. Supported Environment in Test framework (Azure environments) +## Supported Environment in Test framework -#### 8.1 Default Environments and associated Uri +#### Default Environments and associated Uri ##### Environment = Prod From 8858769ab02eff1040ab69e371d8171afcbf166d Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 6 Nov 2017 14:57:15 -0800 Subject: [PATCH 21/37] Finish tests --- .../EnvironmentSetupHelper.cs | 18 +- tools/Modules/TestFx-Tasks.psm1 | 9 +- tools/Modules/Tests/RepoModuleTests.cs | 0 tools/Modules/Tests/RepoModuleTests.ps1 | 171 ++++++++++++++++-- 4 files changed, 164 insertions(+), 34 deletions(-) delete mode 100644 tools/Modules/Tests/RepoModuleTests.cs diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 278a24f727..2b15734a05 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -182,7 +182,7 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest #endif } - private void SetEnvironmentVariableFromCredentialFile() + public void SetEnvironmentVariableFromCredentialFile() { var filePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.azure/testcredentials.json"; Dictionary credentials; @@ -208,19 +208,9 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest formattedConnectionString.Append(String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"])); } - if (credentials.ContainsKey("AADTenant")) + if (credentials.ContainsKey("TenantId")) { - formattedConnectionString.Append(String.Format(";AADTenant={0}", credentials["AADTenant"])); - } - - if (credentials.ContainsKey("ServicePrincipal")) - { - formattedConnectionString.Append(String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"])); - } - - if (credentials.ContainsKey("ServicePrincipalSecret")) - { - formattedConnectionString.Append(String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"])); + formattedConnectionString.Append(String.Format(";AADTenant={0}", credentials["TenantId"])); } if (credentials.ContainsKey("ResourceManagementUri")) @@ -287,7 +277,7 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest } } - private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) + public void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) { TestEnvironment currentEnvironment = null; if (mode == AzureModule.AzureResourceManager) diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index cc2c6ea687..8ae1c6e4d4 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -67,7 +67,8 @@ if ([string]::IsNullOrEmpty($NewServicePrincipalDisplayName) -eq $false) { $Scope = "/subscriptions/" + $SubscriptionId - $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $NewServicePrincipalSecret + $SecureStringSecret = ConvertTo-SecureString $NewServicePrincipalSecret -AsPlainText -Force + $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $SecureStringSecret Write-Host "New ServicePrincipal created: " + $NewServicePrincipal $NewRole = $null @@ -89,7 +90,7 @@ $credentials.UserId = $UserId } - if ([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) { + if ([string]::IsNullOrEmpty($ServicePrincipalId) -eq $false) { $credentials.ServicePrincipal = $ServicePrincipalId $credentials.ServicePrincipalSecret = $ServicePrincipalSecret } @@ -144,7 +145,7 @@ $credentialsJson = $credentials | ConvertTo-Json $directoryPath = $Env:USERPROFILE + "\.azure" - if (!(Test-Path $directoryPath) -and (Force -or $PSCmdlet.ShouldContinue("Do you want to create directory: " + $directoryPath + " which will contain your credentials file?", "Create directory?"))) { + if (!(Test-Path $directoryPath) -and ($Force -or $PSCmdlet.ShouldContinue("Do you want to create directory: " + $directoryPath + " which will contain your credentials file?", "Create directory?"))) { New-Item -ItemType Directory -Path $directoryPath } $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" @@ -219,7 +220,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADTenant={0}"), $TenantId) } - if([string]::IsNullOrEmpty($ServicePrincipal) -eq $false) + if([string]::IsNullOrEmpty($ServicePrincipalId) -eq $false) { $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipal={0}"), $ServicePrincipalId) } diff --git a/tools/Modules/Tests/RepoModuleTests.cs b/tools/Modules/Tests/RepoModuleTests.cs deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tools/Modules/Tests/RepoModuleTests.ps1 b/tools/Modules/Tests/RepoModuleTests.ps1 index 7fb275549a..095066f339 100644 --- a/tools/Modules/Tests/RepoModuleTests.ps1 +++ b/tools/Modules/Tests/RepoModuleTests.ps1 @@ -15,29 +15,61 @@ Function Test-NewCredentialNewServicePrincipal Import-Module $PSScriptRoot\..\TestFx-Tasks.psd1 # Test that Service Principal is correctly created $context = Get-AzureRmContext - New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalPassword "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force + New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Record" -Force $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialtestserviceprincipal | where { $_.DisplayName -eq "credentialtestserviceprincipal" } if ($servicePrincipal -eq $null) { throw "ServicePrincipal not properly created." } - - # Test that file is correctly set # Test that connection string is properly set - [System.Reflection.Assembly]::LoadFrom("$PSScriptRoot\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll") - $envHelper = New-Object Microsoft.Azure.Commands.ScenarioTest.EnviromentSetupHelper -ArgumentList @() + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $envHelper = New-Object Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper -ArgumentList @() + $envHelper.SetEnvironmentVariableFromCredentialFile() + if (($Env:AZURE_TEST_MODE -ne "Record") -or ($Env:TEST_CSM_ORGID_AUTHENTICATION -ne + "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Record;Environment=Prod;ServicePrincipal=" + $servicePrincipal.ApplicationId + ";ServicePrincipalSecret=testpassword;" + + "AADTenant=" + $context.Tenant.Id)) + { + throw "ConnectionString not set correctly" + } # Test that TestEnviroment is set-up properly + $synch = New-Object System.Threading.SynchronizationContext -ArgumentList @() + [System.Threading.SynchronizationContext]::SetSynchronizationContext($synch) + $envHelper.SetupAzureEnvironmentFromEnvironmentVariables("AzureResourceManager") + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\Common\Commands.Common.Authentication.Abstractions\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $defaultContext = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext + if ($defaultContext.Subscription.Id -ne $context.Subscription.Id) + { + throw "Subscription not set correctly" + $context.Subscription.Id + } + + if ($defaultContext.Tenant.Id -ne $context.Tenant.Id) + { + throw "Tenant not set correctly" + $context.Tenant.Id + } # Clean-up Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force + Remove-Item Env:AZURE_TEST_MODE + Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION + $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" + Remove-Item -LiteralPath $filePath -Force + $directoryPath = $Env:USERPROFILE + "\.azure\" + $directoryEmpty = Get-ChildItem $directoryPath | Measure-Object + if ($directoryEmpty.Count -eq 0) + { + Remove-Item $directoryPath -Recurse -Force + } } Function Test-NewCredentialExistingServicePrincipal { # Set-up - $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password "testpassword" + $SecureStringSecret = ConvertTo-SecureString "testpassword" -AsPlainText -Force + $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password $SecureStringSecret $context = Get-AzureRmContext $Scope = "/subscriptions/" + $context.Subscription.Id $NewRole = $null @@ -51,33 +83,96 @@ Function Test-NewCredentialExistingServicePrincipal $Retries++; } - # Test that file is correctly set New-AzureCredential -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force # Test that connection string is properly set + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $envHelper = New-Object Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper -ArgumentList @() + $envHelper.SetEnvironmentVariableFromCredentialFile() + if (($Env:AZURE_TEST_MODE -ne "Playback") -or ($Env:TEST_CSM_ORGID_AUTHENTICATION -ne + "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Playback;Environment=Prod;ServicePrincipal=" + $NewServicePrincipal.ApplicationId + ";ServicePrincipalSecret=testpassword;" + + "AADTenant=" + $context.Tenant.Id)) + { + throw "ConnectionString not set correctly" + $Env:TEST_CSM_ORGID_AUTHENTICATION + } # Test that TestEnviroment is set-up properly + $synch = New-Object System.Threading.SynchronizationContext -ArgumentList @() + [System.Threading.SynchronizationContext]::SetSynchronizationContext($synch) + $envHelper.SetupAzureEnvironmentFromEnvironmentVariables("AzureResourceManager") + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\Common\Commands.Common.Authentication.Abstractions\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $defaultContext = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext + if ($defaultContext.Subscription.Id -ne $context.Subscription.Id) + { + throw "Subscription not set correctly" + $context.Subscription.Id + } + + if ($defaultContext.Tenant.Id -ne $context.Tenant.Id) + { + throw "Tenant not set correctly" + $context.Tenant.Id + } # Clean-up - Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force + Get-AzureRmADApplication -ApplicationId $NewServicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force + Remove-Item Env:AZURE_TEST_MODE + Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION + $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" + Remove-Item -LiteralPath $filePath -Force + $directoryPath = $Env:USERPROFILE + "\.azure\" + $directoryEmpty = Get-ChildItem $directoryPath | Measure-Object + if ($directoryEmpty.Count -eq 0) + { + Remove-Item $directoryPath -Recurse -Force + } } Function Test-NewCredentialUserId { - # Test that file is correctly set + $context = Get-AzureRmContext New-AzureCredential -UserId "testuser" -SubscriptionId $context.Subscription.Id -RecordMode "Playback" -Force # Test that connection string is properly set + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $envHelper = New-Object Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper -ArgumentList @() + $envHelper.SetEnvironmentVariableFromCredentialFile() + if (($Env:AZURE_TEST_MODE -ne "Playback") -or ($Env:TEST_CSM_ORGID_AUTHENTICATION -ne "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Playback;Environment=Prod;UserId=testuser")) + { + throw "ConnectionString not set correctly" + $Env:TEST_CSM_ORGID_AUTHENTICATION + } # Test that TestEnviroment is set-up properly + $synch = New-Object System.Threading.SynchronizationContext -ArgumentList @() + [System.Threading.SynchronizationContext]::SetSynchronizationContext($synch) + $envHelper.SetupAzureEnvironmentFromEnvironmentVariables("AzureResourceManager") + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\Common\Commands.Common.Authentication.Abstractions\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $defaultContext = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext + if ($defaultContext.Subscription.Id -ne $context.Subscription.Id) + { + throw "Subscription not set correctly" + $context.Subscription.Id + } # Clean-up + Remove-Item Env:AZURE_TEST_MODE + Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION + $filePath = $Env:USERPROFILE + "\.azure\testcredentials.json" + Remove-Item -LiteralPath $filePath -Force + $directoryPath = $Env:USERPROFILE + "\.azure\" + $directoryEmpty = Get-ChildItem $directoryPath | Measure-Object + if ($directoryEmpty.Count -eq 0) + { + Remove-Item $directoryPath -Recurse -Force + } } Function Test-SetEnvironmentServicePrincipal { # Set-up - $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password "testpassword" + $SecureStringSecret = ConvertTo-SecureString "testpassword" -AsPlainText -Force + $NewServicePrincipal = New-AzureRmADServicePrincipal -DisplayName "credentialtestserviceprincipal" -Password $SecureStringSecret $context = Get-AzureRmContext $Scope = "/subscriptions/" + $context.Subscription.Id $NewRole = $null @@ -92,22 +187,66 @@ Function Test-SetEnvironmentServicePrincipal } # Test that connection string is properly set - Set-TestEnvironment -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" + Set-TestEnvironment -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Record" + if (($Env:AZURE_TEST_MODE -ne "Record") -or ($Env:TEST_CSM_ORGID_AUTHENTICATION -ne + "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Record;Environment=Prod;AADTenant=" + $context.Tenant.Id + ";ServicePrincipal=" + $NewServicePrincipal.ApplicationId + ";ServicePrincipalSecret=testpassword")) + { + throw "ConnectionString not set correctly" + $Env:TEST_CSM_ORGID_AUTHENTICATION + } # Test that TestEnviroment is set-up properly + $synch = New-Object System.Threading.SynchronizationContext -ArgumentList @() + [System.Threading.SynchronizationContext]::SetSynchronizationContext($synch) + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $envHelper = New-Object Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper -ArgumentList @() + $envHelper.SetupAzureEnvironmentFromEnvironmentVariables("AzureResourceManager") + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\Common\Commands.Common.Authentication.Abstractions\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $defaultContext = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext + if ($defaultContext.Subscription.Id -ne $context.Subscription.Id) + { + throw "Subscription not set correctly" + $context.Subscription.Id + } + + if ($defaultContext.Tenant.Id -ne $context.Tenant.Id) + { + throw "Tenant not set correctly" + $context.Tenant.Id + } # Clean-up - Get-AzureRmADApplication -ApplicationId $servicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force + Get-AzureRmADApplication -ApplicationId $NewServicePrincipal.ApplicationId | Remove-AzureRmADApplication -Force + Remove-Item Env:AZURE_TEST_MODE + Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION } Function Test-SetEnvironmentUserId { + $context = Get-AzureRmContext + Set-TestEnvironment -UserId "testuser" -SubscriptionId $context.Subscription.Id -RecordMode "Playback" + # Test that connection string is properly set - Set-TestEnvironment -UserId "testuser" -SubscriptionId $context.Subscription.Id RecordMode "Playback" + if (($Env:AZURE_TEST_MODE -ne "Playback") -or ($Env:TEST_CSM_ORGID_AUTHENTICATION -ne "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Playback;Environment=Prod;UserId=testuser")) + { + throw "ConnectionString not set correctly" + $Env:TEST_CSM_ORGID_AUTHENTICATION + } # Test that TestEnviroment is set-up properly + $synch = New-Object System.Threading.SynchronizationContext -ArgumentList @() + [System.Threading.SynchronizationContext]::SetSynchronizationContext($synch) + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $envHelper = New-Object Microsoft.WindowsAzure.Commands.ScenarioTest.EnvironmentSetupHelper -ArgumentList @() + $envHelper.SetupAzureEnvironmentFromEnvironmentVariables("AzureResourceManager") + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\Common\Commands.Common.Authentication.Abstractions\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $defaultContext = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext + if ($defaultContext.Subscription.Id -ne $context.Subscription.Id) + { + throw "Subscription not set correctly" + $context.Subscription.Id + } # Clean-up -} - -Test-NewCredentialNewServicePrincipal \ No newline at end of file + Remove-Item Env:AZURE_TEST_MODE + Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION +} \ No newline at end of file From 777f7ae74dad67db513127722b8a61659d36db6c Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 6 Nov 2017 15:49:10 -0800 Subject: [PATCH 22/37] address PR comments --- tools/AzureRM.Example.psm1 | 2 +- tools/UpdateModules.ps1 | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/tools/AzureRM.Example.psm1 b/tools/AzureRM.Example.psm1 index 3ab512b918..5bd1f9c33e 100644 --- a/tools/AzureRM.Example.psm1 +++ b/tools/AzureRM.Example.psm1 @@ -17,7 +17,7 @@ $FilteredCommands | ForEach-Object { $global:PSDefaultParameterValues.Add($_, { $context = Get-AzureRmContext - if ($context.ExtendedProperties.ContainsKey("Default Resource Group")) { + if (($context -ne $null) -and $context.ExtendedProperties.ContainsKey("Default Resource Group")) { $context.ExtendedProperties["Default Resource Group"] } }) diff --git a/tools/UpdateModules.ps1 b/tools/UpdateModules.ps1 index 6cc6f43bc2..73190cb68c 100644 --- a/tools/UpdateModules.ps1 +++ b/tools/UpdateModules.ps1 @@ -97,7 +97,7 @@ function Find-DefaultResourceGroupCmdlets $AllCmdlets += $dllCmdlets } - $FilteredCommands = $AllCmdlets | Where-Object {Test-RequiredParameter -Cmdlet $_} + $FilteredCommands = $AllCmdlets | Where-Object {Test-CmdletRequiredParameter -Cmdlet $_ -Parameter "ResourceGroupName"} if ($FilteredCommands.Length -eq 0) { $contructedCommands = "@()" @@ -119,20 +119,21 @@ function Find-DefaultResourceGroupCmdlets } } -function Test-RequiredParameter +function Test-CmdletRequiredParameter { [CmdletBinding()] param( - [Object]$Cmdlet + [Object]$Cmdlet, + [string]$Parameter ) PROCESS { - $rgParameter = $Cmdlet.GetProperties() | Where-Object {$_.Name -eq "ResourceGroupName"} + $rgParameter = $Cmdlet.GetProperties() | Where-Object {$_.Name -eq $Parameter} if ($rgParameter -ne $null) { - $parameterSets = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} + $parameterAttributes = $rgParameter.CustomAttributes | Where-Object {$_.AttributeType.Name -eq "ParameterAttribute"} $isMandatory = $true - $parameterSets | ForEach-Object { + $parameterAttributes | ForEach-Object { $hasParameterSet = $_.NamedArguments | Where-Object {$_.MemberName -eq "ParameterSetName"} $MandatoryParam = $_.NamedArguments | Where-Object {$_.MemberName -eq "Mandatory"} if (($hasParameterSet -ne $null) -or (!$MandatoryParam.TypedValue.Value)) { From a3c5c02c6571beb89606ab9dc41056e323935a0b Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Tue, 7 Nov 2017 13:29:30 -0800 Subject: [PATCH 23/37] add functionality to unlistmodules --- tools/UnlistModules.ps1 | 144 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 135 insertions(+), 9 deletions(-) diff --git a/tools/UnlistModules.ps1 b/tools/UnlistModules.ps1 index b9407d6992..6fabc16742 100644 --- a/tools/UnlistModules.ps1 +++ b/tools/UnlistModules.ps1 @@ -12,11 +12,36 @@ # limitations under the License. # ---------------------------------------------------------------------------------- -function Remove-RMModule +param( + [Parameter(Mandatory = $false, Position = 0)] + [ValidateSet("SingleModule", "ListOfModules" , "AzureRmAndDependencies", "AzureAndDependencies", "NetCore")] + [string]$scope, + + [Parameter(Mandatory = $false)] + [string]$moduleToDelete, + + [Parameter(Mandatory = $false)] + [string[]]$listOfModulesToDelete, + + [Parameter(Mandatory = $false)] + [string]$apiKey, + + [Parameter(Mandatory = $false)] + [string]$buildConfig, + + [Parameter(Mandatory = $false, Position = 4)] + [string] $repositoryLocation, + + [Parameter(Mandatory = $false, Position = 5)] + [string] $nugetExe +) + +function Unlist-Module { [CmdletBinding()] param( - [string]$Path, + [string]$ModuleName, + [string]$ModuleVersion, [string]$ApiKey, [string]$RepoLocation, [string]$nugetExe @@ -24,12 +49,113 @@ function Remove-RMModule PROCESS { - $moduleName = (Get-Item -Path $Path).Name - $moduleManifest = $moduleName + ".psd1" - $moduleSourcePath = Join-Path -Path $Path -ChildPath $moduleManifest - $manifest = Test-ModuleManifest -Path $moduleSourcePath - Write-Output "Unlisting package $moduleName from nuget source $RepoLocation" - &$nugetExe delete $moduleName $manifest.Version.ToString() -s $RepoLocation apikey $ApiKey - Write-Output "Unlisting package $moduleName from nuget source $RepoLocation" + Write-Output "Unlisting package $ModuleName from nuget source $RepoLocation" + &$nugetExe delete $ModuleName $ModuleVersion -s $RepoLocation apikey $ApiKey } +} + +function Get-ModuleToDelete +{ + [CmdletBinding()] + param( + [string]$moduleToDelete + ) + + PROCESS + { + $packageFolder = "$PSScriptRoot\..\src\Package" + if (($moduleToDelete -eq "AzureRM") -or ($moduleToDelete -eq "AzureRM.Netcore")) + { + $rootFolder = "$packageFolder\$buildConfig" + } + + elseif ($moduleToDelete -eq "Azure") + { + $rootFolder = "$packageFolder\$buildConfig\ServiceManagement\Azure" + } + + elseif ($moduleToDelete -contains '*NetCore*') + { + $rootFolder = "$packageFolder\$buildConfig\ResourceManager" + } + + elseif ($moduleToDelete -contains '*AzureRm*') + { + $rootFolder = "$packageFolder\$buildConfig\ResourceManager\AzureResourceManager" + } + + elseif ($moduleToDelete -contains "*Storage*") + { + $rootFolder = "$packageFolder\$buildConfig\Storage" + } + + return "$rootFolder\$moduleToDelete" + } +} + +if ($scope -eq "SingleModule") +{ + if ($moduleToDelete -eq $null) + { + throw "To delete a single module, moduleToDelete must not be null" + } + + $targetModulePath = Get-ModuleToDelete -moduleToDelete $moduleToDelete + $manifestDir = Get-Item -Path $targetModulePath + $moduleName = $manifestDir.Name + ".psd1" + $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name + Unlist-Module -ModuleName $moduleToDelete -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe +} + +elseif ($scope -eq "ListOfModules") +{ + if ($listOfModulesToDelete -eq $null) + { + throw "To delete a list of modules, listOfModulesToDelete must not be null" + } + + $listOfModulesToDelete | ForEach-Object { + $targetModulePath = Get-ModuleToDelete -moduleToDelete $_ + $manifestDir = Get-Item -Path $targetModulePath + $moduleName = $manifestDir.Name + ".psd1" + $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name + Unlist-Module -ModuleName $moduleToDelete -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe + } +} + +elseif ($scope -eq "AzureRmAndDependencies") +{ + $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\AzureRM.psd1" + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name + $ModuleMetadata.RequiredModules | ForEach-Object { + Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe + } + Unlist-Module -ModuleName "AzureRM" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe +} + +elseif ($scope -eq "AzureAndDependencies") +{ + $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\ServiceManagement\Azure\Azure.psd1" + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name + $ModuleMetadata.RequiredModules | ForEach-Object { + Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe + } + Unlist-Module -ModuleName "Azure" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe +} + +elseif ($scope -eq "NetCore") +{ + $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\AzureRm.Netcore.psd1" + $file = Get-Item $manifestPath + Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name + $ModuleMetadata.RequiredModules | ForEach-Object { + Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe + } + Unlist-Module -ModuleName "AzureRM.Netcore" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe } \ No newline at end of file From 02dd1d9457a2e7a749d2247e4e4ecec2d2b16cdc Mon Sep 17 00:00:00 2001 From: Stephen Griffiths Date: Wed, 8 Nov 2017 11:09:15 +0000 Subject: [PATCH 24/37] Fix returned fields in Get-AzureRmSubscription Fixed the examples of returned fields in Get-AzureRmSubscription. Added an extra piped statement to Example 4 because it would not naturally work with the newly renamed fields. --- .../help/Get-AzureRmSubscription.md | 46 +++++++++++-------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md b/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md index ab67359a7d..5344019e1d 100644 --- a/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md +++ b/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md @@ -35,9 +35,10 @@ access. ``` PS C:\>Get-AzureRmSubscription -Subscription Name : Contoso Subscription 1 -SubscriptionId : xxxx-xxxx-xxxx-xxxx -TenantId : yyyy-yyyy-yyyy-yyyy +Name : Contoso Subscription 1 +Id : xxxx-xxxx-xxxx-xxxx +TenantId : yyyy-yyyy-yyyy-yyyy +State : Enabled ``` This command gets all subscriptions in all tenants that are authorized for @@ -47,13 +48,15 @@ the current account. ``` PS C:\>Get-AzureRmSubscription -TenantId "xxxx-xxxx-xxxx-xxxx" -Subscription Name : Contoso Subscription 1 -SubscriptionId : yyyy-yyyy-yyyy-yyyy -TenantId : xxxx-xxxx-xxxx-xxxx +Name : Contoso Subscription 1 +Id : yyyy-yyyy-yyyy-yyyy +TenantId : xxxx-xxxx-xxxx-xxxx +State : Enabled -Subscription Name : Contoso Subscription 2 -SubscriptionId : yyyy-yyyy-yyyy-yyyy -TenantId : xxxx-xxxx-xxxx-xxxx +Name : Contoso Subscription 2 +Id : yyyy-yyyy-yyyy-yyyy +TenantId : xxxx-xxxx-xxxx-xxxx +State : Enabled ``` List all subscriptions in the given tenant that are authorized for the @@ -63,13 +66,15 @@ current account. ``` PS C:\>Get-AzureRmSubscription -Subscription Name : Contoso Subscription 1 -SubscriptionId : yyyy-yyyy-yyyy-yyyy -TenantId : xxxx-xxxx-xxxx-xxxx +Name : Contoso Subscription 1 +Id : yyyy-yyyy-yyyy-yyyy +TenantId : xxxx-xxxx-xxxx-xxxx +State : Enabled -Subscription Name : Contoso Subscription 2 -SubscriptionId : yyyy-yyyy-yyyy-yyyy -TenantId : xxxx-xxxx-xxxx-xxxx +Name : Contoso Subscription 2 +Id : yyyy-yyyy-yyyy-yyyy +TenantId : xxxx-xxxx-xxxx-xxxx +State : Enabled ``` This command gets all subscriptions in the current tenant that are @@ -77,11 +82,14 @@ authorized for the current user. ### Example 4: Change the current context to use a specific subscription ``` -PS C:\>Get-AzureRmSubscription -SubscriptionId "xxxx-xxxx-xxxx-xxxx" -TenantId "yyyy-yyyy-yyyy-yyyy" | Set-AzureRmContext +PS C:\>Get-AzureRmSubscription -SubscriptionId "xxxx-xxxx-xxxx-xxxx" -TenantId "yyyy-yyyy-yyyy-yyyy" | Select @{n='SubscriptionId';e={$_.Id}} | Set-AzureRmContext -Subscription Name : Contoso Subscription 1 -SubscriptionId : xxxx-xxxx-xxxx-xxxx -TenantId : yyyy-yyyy-yyyy-yyyy +Environment : AzureCloud +Account : user@example.com +TenantId : yyyy-yyyy-yyyy-yyyy +SubscriptionId : xxxx-xxxx-xxxx-xxxx +SubscriptionName : Contoso Subscription 1 +CurrentStorageAccount : ``` This command gets the specified subscription, and then sets the current From a6c7cda9cd2d6e83712d969ed8886481f09848cf Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Wed, 8 Nov 2017 09:34:01 -0800 Subject: [PATCH 25/37] Test setup --- .../ArgumentCompleterTests.cs | 45 +++++++++++++++++++ .../ArgumentCompleterTests.ps1 | 23 ++++++++++ 2 files changed, 68 insertions(+) create mode 100644 src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs create mode 100644 src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs new file mode 100644 index 0000000000..04d9881fe3 --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ResourceManager.Common; +using Microsoft.Azure.Commands.Resources.Test.ScenarioTests; +using Microsoft.Azure.Commands.ScenarioTest; +using Microsoft.Azure.ServiceManagemenet.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using Xunit; +using Xunit.Abstractions; + +namespace Microsoft.Azure.Commands.Profile.Test +{ + public class ArgumentCompleterTests : RMTestBase + { + private XunitTracingInterceptor xunitLogger; + + public ArgumentCompleterTests(ITestOutputHelper output) + { + TestExecutionHelpers.SetUpSessionAndProfile(); + ResourceManagerProfileProvider.InitializeResourceManagerProfile(true); + + xunitLogger = new XunitTracingInterceptor(output); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void DefaultResourceGroup() + { + ProfileController.NewInstance.RunPsTest(xunitLogger, "72f988bf-86f1-41af-91ab-2d7cd011db47", "Test-LocationCompleter"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 new file mode 100644 index 0000000000..229787c370 --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 @@ -0,0 +1,23 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests location completer +#> +function Test-LocationCompleter +{ + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\bin\Debug\Microsoft.Azure.Commands.ResourceManager.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) +} \ No newline at end of file From ee0ce1dbf78ed766e5fc9710aee4d3d496f25afd Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Thu, 9 Nov 2017 10:30:11 -0800 Subject: [PATCH 26/37] Finish and run tests --- .../ArgumentCompleterTests.cs | 9 +- .../ArgumentCompleterTests.ps1 | 21 +- .../Commands.Profile.Test.csproj | 10 + .../TestLocationCompleter.json | 179 ++++++++++++++++++ .../TestResourceGroupCompleter.json | 122 ++++++++++++ 5 files changed, 339 insertions(+), 2 deletions(-) create mode 100644 src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestLocationCompleter.json create mode 100644 src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestResourceGroupCompleter.json diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs index 04d9881fe3..527a30bec9 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.cs @@ -37,9 +37,16 @@ namespace Microsoft.Azure.Commands.Profile.Test [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void DefaultResourceGroup() + public void TestLocationCompleter() { ProfileController.NewInstance.RunPsTest(xunitLogger, "72f988bf-86f1-41af-91ab-2d7cd011db47", "Test-LocationCompleter"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestResourceGroupCompleter() + { + ProfileController.NewInstance.RunPsTest(xunitLogger, "72f988bf-86f1-41af-91ab-2d7cd011db47", "Test-ResourceGroupCompleter"); + } } } \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 index 229787c370..4076a90321 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 +++ b/src/ResourceManager/Profile/Commands.Profile.Test/ArgumentCompleterTests.ps1 @@ -18,6 +18,25 @@ Tests location completer #> function Test-LocationCompleter { - $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\bin\Debug\Microsoft.Azure.Commands.ResourceManager.Common.dll" + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\Microsoft.Azure.Commands.ResourceManager.Common.dll" $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $resourceTypes = @("Microsoft.Batch/operations") + $locations = [Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters.LocationCompleterAttribute]::FindLocations($resourceTypes) + $expectedResourceType = Get-AzureRmResourceProvider -ProviderNamespace "Microsoft.Batch" | Where-Object {$_.ResourceTypes.ResourceTypeName -eq "operations"} + $expectedLocations = $expectedResourceType.Locations | ForEach-Object {"`"" + $_ + "`""} + Assert-AreEqualArray $locations $expectedLocations +} + + +<# +.SYNOPSIS +Tests resource group completer +#> +function Test-ResourceGroupCompleter +{ + $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\Microsoft.Azure.Commands.ResourceManager.Common.dll" + $assembly = [System.Reflection.Assembly]::LoadFrom($filePath) + $resourceGroups = [Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters.ResourceGroupCompleterAttribute]::GetResourceGroups() + $expectResourceGroups = Get-AzureRmResourceGroup | ForEach-Object {$_.ResourceGroupName} + Assert-AreEqualArray $resourceGroups $expectResourceGroups } \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj index 046805ce09..cf0dd778e7 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj +++ b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj @@ -187,6 +187,7 @@ + @@ -227,10 +228,19 @@ Designer PreserveNewest + + PreserveNewest + Designer + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestLocationCompleter.json b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestLocationCompleter.json new file mode 100644 index 0000000000..2945b54829 --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestLocationCompleter.json @@ -0,0 +1,179 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGJjNDg2NjEtMTgwMS00YjdhLThjYTEtNmEzY2FkZmI0ODcwL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4875adb-8460-44b0-bb6c-5456b8c10b62" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorization\": {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorization\": {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorization\": {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/publicCertificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/publicCertificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ResourcesTopology\",\r\n \"namespace\": \"Microsoft.ResourcesTopology\",\r\n \"authorization\": {\r\n \"applicationId\": \"e6a18a18-ffe6-4ac3-b822-362bb577a6a3\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-05-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "287848" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "1026b21f-91bd-41ed-a5d0-c95ce0d664b3" + ], + "x-ms-correlation-request-id": [ + "1026b21f-91bd-41ed-a5d0-c95ce0d664b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171109T180425Z:1026b21f-91bd-41ed-a5d0-c95ce0d664b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Nov 2017 18:04:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGJjNDg2NjEtMTgwMS00YjdhLThjYTEtNmEzY2FkZmI0ODcwL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc008193-cca4-4857-b22e-09c20ab5ca2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\",\r\n \"2016-07-12-preview\",\r\n \"2016-07-12-alpha\",\r\n \"2016-05-09-preview\",\r\n \"2016-05-09-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorization\": {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorization\": {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorization\": {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/publicCertificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/publicCertificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ResourcesTopology\",\r\n \"namespace\": \"Microsoft.ResourcesTopology\",\r\n \"authorization\": {\r\n \"applicationId\": \"e6a18a18-ffe6-4ac3-b822-362bb577a6a3\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-05-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-05-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "295392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "a98c52b1-ccd9-493c-a108-3bf1f1a2ce61" + ], + "x-ms-correlation-request-id": [ + "a98c52b1-ccd9-493c-a108-3bf1f1a2ce61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171109T180426Z:a98c52b1-ccd9-493c-a108-3bf1f1a2ce61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Nov 2017 18:04:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGJjNDg2NjEtMTgwMS00YjdhLThjYTEtNmEzY2FkZmI0ODcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efb9f45e-c7d5-4252-aca6-bc37eb1b7096" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2057" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "099c86c7-a2d0-47d6-a1de-f5b7c32368bd" + ], + "x-ms-correlation-request-id": [ + "099c86c7-a2d0-47d6-a1de-f5b7c32368bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171109T180426Z:099c86c7-a2d0-47d6-a1de-f5b7c32368bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Nov 2017 18:04:26 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8bc48661-1801-4b7a-8ca1-6a3cadfb4870" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestResourceGroupCompleter.json b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestResourceGroupCompleter.json new file mode 100644 index 0000000000..9179c69720 --- /dev/null +++ b/src/ResourceManager/Profile/Commands.Profile.Test/SessionRecords/Microsoft.Azure.Commands.Profile.Test.ArgumentCompleterTests/TestResourceGroupCompleter.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourcegroups?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGJjNDg2NjEtMTgwMS00YjdhLThjYTEtNmEzY2FkZmI0ODcwL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5408e6e0-b257-466d-8b8d-577d15d4da77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/acs10\",\r\n \"name\": \"acs10\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/AzureResourceGroup2fromvs\",\r\n \"name\": \"AzureResourceGroup2fromvs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/CloudExplorer\",\r\n \"name\": \"CloudExplorer\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/ContosoResourceGroup\",\r\n \"name\": \"ContosoResourceGroup\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/cosmorg\",\r\n \"name\": \"cosmorg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-NotificationHubs-WestUS\",\r\n \"name\": \"Default-NotificationHubs-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-SQL-SouthCentralUS\",\r\n \"name\": \"Default-SQL-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkauto\",\r\n \"name\": \"elkauto\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/ElkAutomationPowerShell\",\r\n \"name\": \"ElkAutomationPowerShell\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkoct2015\",\r\n \"name\": \"elkoct2015\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkrg\",\r\n \"name\": \"elkrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkstorage\",\r\n \"name\": \"elkstorage\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/freddy\",\r\n \"name\": \"freddy\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/FredPolicyNoVM\",\r\n \"name\": \"FredPolicyNoVM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/fredvm\",\r\n \"name\": \"fredvm\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/mclaytontest\",\r\n \"name\": \"mclaytontest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/mclaytontest1\",\r\n \"name\": \"mclaytontest1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/myrg1\",\r\n \"name\": \"myrg1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/RedsideRG\",\r\n \"name\": \"RedsideRG\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/register\",\r\n \"name\": \"register\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/RmStorageCloudService\",\r\n \"name\": \"RmStorageCloudService\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/scottpdevtestlabRG511236\",\r\n \"name\": \"scottpdevtestlabRG511236\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/scottph2\",\r\n \"name\": \"scottph2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/TestRG\",\r\n \"name\": \"TestRG\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/tmrg\",\r\n \"name\": \"tmrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/what()group\",\r\n \"name\": \"what()group\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/woolybstorrg\",\r\n \"name\": \"woolybstorrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/WoolyIE9\",\r\n \"name\": \"WoolyIE9\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/woolytestvm\",\r\n \"name\": \"woolytestvm\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6839" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "e75c1e4b-db57-4dce-8c94-ad3df8cbeaa8" + ], + "x-ms-correlation-request-id": [ + "e75c1e4b-db57-4dce-8c94-ad3df8cbeaa8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171109T180608Z:e75c1e4b-db57-4dce-8c94-ad3df8cbeaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Nov 2017 18:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourcegroups?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGJjNDg2NjEtMTgwMS00YjdhLThjYTEtNmEzY2FkZmI0ODcwL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6efd222f-a546-4d08-8888-f59eb9aafc5d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/acs10\",\r\n \"name\": \"acs10\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/AzureResourceGroup2fromvs\",\r\n \"name\": \"AzureResourceGroup2fromvs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/CloudExplorer\",\r\n \"name\": \"CloudExplorer\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/ContosoResourceGroup\",\r\n \"name\": \"ContosoResourceGroup\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/cosmorg\",\r\n \"name\": \"cosmorg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-NotificationHubs-WestUS\",\r\n \"name\": \"Default-NotificationHubs-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-SQL-SouthCentralUS\",\r\n \"name\": \"Default-SQL-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/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/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkauto\",\r\n \"name\": \"elkauto\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/ElkAutomationPowerShell\",\r\n \"name\": \"ElkAutomationPowerShell\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkoct2015\",\r\n \"name\": \"elkoct2015\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkrg\",\r\n \"name\": \"elkrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/elkstorage\",\r\n \"name\": \"elkstorage\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/freddy\",\r\n \"name\": \"freddy\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/FredPolicyNoVM\",\r\n \"name\": \"FredPolicyNoVM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/fredvm\",\r\n \"name\": \"fredvm\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/mclaytontest\",\r\n \"name\": \"mclaytontest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/mclaytontest1\",\r\n \"name\": \"mclaytontest1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/myrg1\",\r\n \"name\": \"myrg1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/RedsideRG\",\r\n \"name\": \"RedsideRG\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/register\",\r\n \"name\": \"register\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/RmStorageCloudService\",\r\n \"name\": \"RmStorageCloudService\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/scottpdevtestlabRG511236\",\r\n \"name\": \"scottpdevtestlabRG511236\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/scottph2\",\r\n \"name\": \"scottph2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/TestRG\",\r\n \"name\": \"TestRG\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/tmrg\",\r\n \"name\": \"tmrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/what()group\",\r\n \"name\": \"what()group\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/woolybstorrg\",\r\n \"name\": \"woolybstorrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/WoolyIE9\",\r\n \"name\": \"WoolyIE9\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8bc48661-1801-4b7a-8ca1-6a3cadfb4870/resourceGroups/woolytestvm\",\r\n \"name\": \"woolytestvm\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6839" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "79e73a24-3211-4546-9e66-91f9c3155ba6" + ], + "x-ms-correlation-request-id": [ + "79e73a24-3211-4546-9e66-91f9c3155ba6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171109T180608Z:79e73a24-3211-4546-9e66-91f9c3155ba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Nov 2017 18:06:08 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "8bc48661-1801-4b7a-8ca1-6a3cadfb4870" + } +} \ No newline at end of file From 94822f32b96ff0de60cc87f7cbd13e6610e048e9 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Thu, 9 Nov 2017 10:31:54 -0800 Subject: [PATCH 27/37] remove unrelated changes --- tools/UnlistModules.ps1 | 161 ---------------------------------------- 1 file changed, 161 deletions(-) delete mode 100644 tools/UnlistModules.ps1 diff --git a/tools/UnlistModules.ps1 b/tools/UnlistModules.ps1 deleted file mode 100644 index 6fabc16742..0000000000 --- a/tools/UnlistModules.ps1 +++ /dev/null @@ -1,161 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - -param( - [Parameter(Mandatory = $false, Position = 0)] - [ValidateSet("SingleModule", "ListOfModules" , "AzureRmAndDependencies", "AzureAndDependencies", "NetCore")] - [string]$scope, - - [Parameter(Mandatory = $false)] - [string]$moduleToDelete, - - [Parameter(Mandatory = $false)] - [string[]]$listOfModulesToDelete, - - [Parameter(Mandatory = $false)] - [string]$apiKey, - - [Parameter(Mandatory = $false)] - [string]$buildConfig, - - [Parameter(Mandatory = $false, Position = 4)] - [string] $repositoryLocation, - - [Parameter(Mandatory = $false, Position = 5)] - [string] $nugetExe -) - -function Unlist-Module -{ - [CmdletBinding()] - param( - [string]$ModuleName, - [string]$ModuleVersion, - [string]$ApiKey, - [string]$RepoLocation, - [string]$nugetExe - ) - - PROCESS - { - Write-Output "Unlisting package $ModuleName from nuget source $RepoLocation" - &$nugetExe delete $ModuleName $ModuleVersion -s $RepoLocation apikey $ApiKey - } -} - -function Get-ModuleToDelete -{ - [CmdletBinding()] - param( - [string]$moduleToDelete - ) - - PROCESS - { - $packageFolder = "$PSScriptRoot\..\src\Package" - if (($moduleToDelete -eq "AzureRM") -or ($moduleToDelete -eq "AzureRM.Netcore")) - { - $rootFolder = "$packageFolder\$buildConfig" - } - - elseif ($moduleToDelete -eq "Azure") - { - $rootFolder = "$packageFolder\$buildConfig\ServiceManagement\Azure" - } - - elseif ($moduleToDelete -contains '*NetCore*') - { - $rootFolder = "$packageFolder\$buildConfig\ResourceManager" - } - - elseif ($moduleToDelete -contains '*AzureRm*') - { - $rootFolder = "$packageFolder\$buildConfig\ResourceManager\AzureResourceManager" - } - - elseif ($moduleToDelete -contains "*Storage*") - { - $rootFolder = "$packageFolder\$buildConfig\Storage" - } - - return "$rootFolder\$moduleToDelete" - } -} - -if ($scope -eq "SingleModule") -{ - if ($moduleToDelete -eq $null) - { - throw "To delete a single module, moduleToDelete must not be null" - } - - $targetModulePath = Get-ModuleToDelete -moduleToDelete $moduleToDelete - $manifestDir = Get-Item -Path $targetModulePath - $moduleName = $manifestDir.Name + ".psd1" - $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName - $file = Get-Item $manifestPath - Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name - Unlist-Module -ModuleName $moduleToDelete -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe -} - -elseif ($scope -eq "ListOfModules") -{ - if ($listOfModulesToDelete -eq $null) - { - throw "To delete a list of modules, listOfModulesToDelete must not be null" - } - - $listOfModulesToDelete | ForEach-Object { - $targetModulePath = Get-ModuleToDelete -moduleToDelete $_ - $manifestDir = Get-Item -Path $targetModulePath - $moduleName = $manifestDir.Name + ".psd1" - $manifestPath = Join-Path -Path $ModulePath -ChildPath $moduleName - $file = Get-Item $manifestPath - Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name - Unlist-Module -ModuleName $moduleToDelete -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe - } -} - -elseif ($scope -eq "AzureRmAndDependencies") -{ - $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\AzureRM.psd1" - $file = Get-Item $manifestPath - Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name - $ModuleMetadata.RequiredModules | ForEach-Object { - Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe - } - Unlist-Module -ModuleName "AzureRM" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe -} - -elseif ($scope -eq "AzureAndDependencies") -{ - $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\ServiceManagement\Azure\Azure.psd1" - $file = Get-Item $manifestPath - Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name - $ModuleMetadata.RequiredModules | ForEach-Object { - Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe - } - Unlist-Module -ModuleName "Azure" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe -} - -elseif ($scope -eq "NetCore") -{ - $manifestPath = "$PSScriptRoot\..\src\Package\$buildConfig\AzureRm.Netcore.psd1" - $file = Get-Item $manifestPath - Import-LocalizedData -BindingVariable ModuleMetadata -BaseDirectory $file.DirectoryName -FileName $file.Name - $ModuleMetadata.RequiredModules | ForEach-Object { - Unlist-Module -ModuleName $_.ModuleName -ModuleVersion $_.RequiredVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe - } - Unlist-Module -ModuleName "AzureRM.Netcore" -ModuleVersion $ModuleMetadata.ModuleVersion -ApiKey $apiKey -RepoLocation $repositoryLocation -nugetExe $nugetExe -} \ No newline at end of file From c0fc8556b4422b50ab8a3eb05d909d42f83c2d8b Mon Sep 17 00:00:00 2001 From: cormacpayne Date: Thu, 9 Nov 2017 18:57:13 -0800 Subject: [PATCH 28/37] Add missing assemblies to RequiredAssemblies field, regenerate wxi --- setup/azurecmdfiles.wxi | 116 ++++++++++++++++++ .../ApiManagement/AzureRM.ApiManagement.psd1 | 3 +- .../AzureBackup/AzureRM.Backup.psd1 | 6 +- .../AzureBatch/AzureRM.Batch.psd1 | 3 +- .../Compute/AzureRM.Compute.psd1 | 3 +- .../DataFactories/AzureRM.DataFactories.psd1 | 3 +- .../HDInsight/AzureRM.HDInsight.psd1 | 3 +- .../KeyVault/AzureRM.KeyVault.psd1 | 6 +- .../AzureRM.RecoveryServices.Backup.psd1 | 11 +- ...AzureRM.RecoveryServices.SiteRecovery.psd1 | 4 +- .../AzureRM.RecoveryServices.psd1 | 3 +- .../RedisCache/AzureRM.RedisCache.psd1 | 3 +- .../SiteRecovery/AzureRM.SiteRecovery.psd1 | 5 +- src/ResourceManager/Sql/AzureRM.Sql.psd1 | 3 +- .../Storage/AzureRM.Storage.psd1 | 3 +- .../AzureRM.StreamAnalytics.psd1 | 3 +- 16 files changed, 162 insertions(+), 16 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 705d2a1d34..a8f65088e2 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -84,6 +84,9 @@ + + + @@ -141,6 +144,15 @@ + + + + + + + + + @@ -176,6 +188,9 @@ + + + @@ -298,6 +313,9 @@ + + + @@ -422,6 +440,9 @@ + + + @@ -609,6 +630,9 @@ + + + @@ -675,6 +699,18 @@ + + + + + + + + + + + + @@ -973,6 +1009,9 @@ + + + @@ -984,6 +1023,9 @@ + + + @@ -993,12 +1035,30 @@ + + + + + + + + + + + + + + + + + + @@ -1016,6 +1076,9 @@ + + + @@ -1031,6 +1094,9 @@ + + + @@ -1066,6 +1132,9 @@ + + + @@ -1254,15 +1323,24 @@ + + + + + + + + + @@ -1307,6 +1385,9 @@ + + + @@ -1339,6 +1420,9 @@ + + + @@ -1371,6 +1455,9 @@ + + + @@ -3102,6 +3189,7 @@ + @@ -3119,6 +3207,9 @@ + + + @@ -3130,6 +3221,7 @@ + @@ -3168,6 +3260,7 @@ + @@ -3206,6 +3299,7 @@ + @@ -3263,6 +3357,7 @@ + @@ -3283,6 +3378,10 @@ + + + + @@ -3375,24 +3474,34 @@ + + + + + + + + + + @@ -3404,6 +3513,7 @@ + @@ -3460,9 +3570,12 @@ + + + @@ -3477,6 +3590,7 @@ + @@ -3487,6 +3601,7 @@ + @@ -3497,6 +3612,7 @@ + diff --git a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 index e0ba0e5600..90bba579ac 100644 --- a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 +++ b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 index 7397635259..c1a3513f6c 100644 --- a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 +++ b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 @@ -54,7 +54,11 @@ 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.BackupServicesManagement.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Management.BackupServicesManagement.dll', + '.\Microsoft.WindowsAzure.Management.Common.dll', + '.\Microsoft.WindowsAzure.Management.Scheduler.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 index 8a88df09c7..e0d03ee470 100644 --- a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 +++ b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index 6e24803df6..e969643fb8 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -63,7 +63,8 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Data.Services.Client.dll', '.\Microsoft.WindowsAzure.Commands.Sync.dll', '.\Microsoft.WindowsAzure.Commands.Tools.Vhd.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 index 67a7c477da..a7bdfd0d31 100644 --- a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 +++ b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactories.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', '.\Microsoft.DataTransfer.Gateway.Encryption.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 index a155d31da0..303e64d0ee 100644 --- a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 +++ b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 index 89a8e67c6a..086b70c14c 100644 --- a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 +++ b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 @@ -57,7 +57,11 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; } RequiredAssemblies = '.\Microsoft.Azure.ActiveDirectory.GraphClient.dll', '.\Microsoft.Azure.KeyVault.dll', '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.KeyVault.dll' + '.\Microsoft.Azure.Management.KeyVault.dll', + '.\Microsoft.Data.Edm.dll', + '.\Microsoft.Data.OData.dll', + '.\Microsoft.Data.Services.Client.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 index 7047f1e882..c159cb42e0 100644 --- a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 +++ b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 @@ -54,8 +54,15 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Models.dll', - '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Models.dll', + '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Logger.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Providers.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.ServiceClientAdapter.dll', + '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 index 84069d3721..c36135aa9f 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 @@ -55,8 +55,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; } # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', '.\Microsoft.Azure.Management.RecoveryServices.dll', - '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll' + '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 38045c66ee..6d59f1bd32 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -54,7 +54,8 @@ 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.RecoveryServices.dll' +RequiredAssemblies = '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 index a02961e1aa..13d545347c 100644 --- a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 +++ b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 875ff13d04..8b51d9bcf1 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -54,7 +54,10 @@ 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.SiteRecovery.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Microsoft.Azure.Management.SiteRecovery.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Sql/AzureRM.Sql.psd1 b/src/ResourceManager/Sql/AzureRM.Sql.psd1 index a3e66cccc2..a92536f4dc 100644 --- a/src/ResourceManager/Sql/AzureRM.Sql.psd1 +++ b/src/ResourceManager/Sql/AzureRM.Sql.psd1 @@ -60,7 +60,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Storage/AzureRM.Storage.psd1 b/src/ResourceManager/Storage/AzureRM.Storage.psd1 index 3ef3e69291..6f68915f9d 100644 --- a/src/ResourceManager/Storage/AzureRM.Storage.psd1 +++ b/src/ResourceManager/Storage/AzureRM.Storage.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 index 4983c5b383..e32abd145b 100644 --- a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 +++ b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 @@ -58,7 +58,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() From ba883dd8500040ad3d95b4b2bfc3ce99abb85b4b Mon Sep 17 00:00:00 2001 From: cormacpayne Date: Thu, 9 Nov 2017 20:28:52 -0800 Subject: [PATCH 29/37] Update change logs and release notes, bump module versions for 5.0.1 release --- ChangeLog.md | 20 ++- .../ApiManagement/AzureRM.ApiManagement.psd1 | 13 +- .../ApiManagement/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureBackup/AzureRM.Backup.psd1 | 8 +- src/ResourceManager/AzureBackup/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureBatch/AzureRM.Batch.psd1 | 62 +------ src/ResourceManager/AzureBatch/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Commands.Batch/Properties/AssemblyInfo.cs | 4 +- .../Compute/AzureRM.Compute.psd1 | 10 +- src/ResourceManager/Compute/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../DataFactories/AzureRM.DataFactories.psd1 | 5 +- .../DataFactories/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../HDInsight/AzureRM.HDInsight.psd1 | 5 +- src/ResourceManager/HDInsight/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../KeyVault/AzureRM.KeyVault.psd1 | 5 +- src/ResourceManager/KeyVault/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.RecoveryServices.Backup.psd1 | 11 +- .../RecoveryServices.Backup/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- ...AzureRM.RecoveryServices.SiteRecovery.psd1 | 25 +-- .../ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.RecoveryServices.psd1 | 5 +- .../RecoveryServices/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../RedisCache/AzureRM.RedisCache.psd1 | 5 +- src/ResourceManager/RedisCache/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../SiteRecovery/AzureRM.SiteRecovery.psd1 | 5 +- src/ResourceManager/SiteRecovery/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- src/ResourceManager/Sql/AzureRM.Sql.psd1 | 18 +- src/ResourceManager/Sql/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Commands.Sql/Properties/AssemblyInfo.cs | 4 +- .../Sql/LegacySdk/Properties/AssemblyInfo.cs | 4 +- .../Storage/AzureRM.Storage.psd1 | 5 +- src/ResourceManager/Storage/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.StreamAnalytics.psd1 | 5 +- .../StreamAnalytics/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- tools/AzureRM/AzureRM.psd1 | 164 ++++-------------- 70 files changed, 204 insertions(+), 364 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index c734371b7a..5ff72addcd 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,22 @@ -## 2017.11.8 - Version 5.0.0 +## 2017.11.10 Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules: + - AzureRM.ApiManagement + - AzureRM.Backup + - AzureRM.Batch + - AzureRM.Compute + - AzureRM.DataFactories + - AzureRM.HDInsight + - AzureRM.KeyVault + - AzureRM.RecoveryServices + - AzureRM.RecoveryServices.Backup + - AzureRM.RecoveryServices.SiteRecovery + - AzureRM.RedisCache + - AzureRM.SiteRecovery + - AzureRM.Sql + - AzureRM.Storage + - AzureRM.StreamAnalytics + +## 2017.11.8 - Version 5.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of introduced breaking changes. * All cmdlets in AzureRM now support online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 index 90bba579ac..0a2474cca6 100644 --- a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 +++ b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -190,16 +190,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* Breaking Changes in Cmdlet to Manage Api Management Users - - New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString - - Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString -* Breaking Changes in Cmdlet to Create Backend Proxy Object - - New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential -* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510 -* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069 -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/ApiManagement/ChangeLog.md b/src/ResourceManager/ApiManagement/ChangeLog.md index d05f94dd7c..b90e81ff01 100644 --- a/src/ResourceManager/ApiManagement/ChangeLog.md +++ b/src/ResourceManager/ApiManagement/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 5.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. * Breaking Changes in Cmdlet to Manage Api Management Users diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs index 95b612956c..c96cf50214 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs index 9b3bf21d20..1f4c0c87d2 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs index 28bd6a384c..b76418abb0 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs index c9ac8e51f6..17c28892dd 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs @@ -42,6 +42,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 index c1a3513f6c..82b0f5ca1f 100644 --- a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 +++ b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -54,8 +54,7 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', - '.\Microsoft.Azure.Management.BackupServicesManagement.dll', +RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll', '.\Microsoft.WindowsAzure.Management.Common.dll', '.\Microsoft.WindowsAzure.Management.Scheduler.dll', '.\Security.Cryptography.dll' @@ -126,8 +125,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/AzureBackup/ChangeLog.md b/src/ResourceManager/AzureBackup/ChangeLog.md index d222fc919f..6aff22d658 100644 --- a/src/ResourceManager/AzureBackup/ChangeLog.md +++ b/src/ResourceManager/AzureBackup/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs index c38cfa4ee2..fbd5fc80ad 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs @@ -46,6 +46,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs index 3ddcab5c82..e56939bf97 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 index e0d03ee470..db3df2ec84 100644 --- a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 +++ b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -148,65 +148,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* Added new parameters to `New-AzureRmBatchAccount`. - - `PoolAllocationMode`: The allocation mode to use for creating pools in the Batch account. To create a Batch account which allocates pool nodes in the user''s subscription, set this to `UserSubscription`. - - `KeyVaultId`: The resource ID of the Azure key vault associated with the Batch account. - - `KeyVaultUrl`: The URL of the Azure key vault associated with the Batch account. -* Updated parameters to `New-AzureBatchTask`. - - Removed the `RunElevated` switch. The `UserIdentity` parameter has been added to replace `RunElevated`, and the equivalent behavior can be achieved by constructing a `PSUserIdentity` as shown below: - - $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin") - - $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser - - Added the `AuthenticationTokenSettings` parameter. This parameter allows you to request the Batch service provide an authentication token to the task when it runs, avoiding the need to pass Batch account keys to the task in order to issue requests to the Batch service. - - Added the `ContainerSettings` parameter. - - This parameter allows you to request the Batch service run the task inside a container. - - Added the `OutputFiles` parameter. - - This parameter allows you to configure the task to upload files to Azure Storage after it has finished. -* Updated parameters to `New-AzureBatchPool`. - - Added the `UserAccounts` parameter. - - This parameter defines user accounts created on each node in the pool. - - Added `TargetLowPriorityComputeNodes` and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`. - - A `TargetDedicated` alias was created for the `TargetDedicatedComputeNodes` parameter. - - Added the `NetworkConfiguration` parameter. - - This parameter allows you to configure the pools network settings. -* Updated parameters to `New-AzureBatchCertificate`. - - The `Password` parameter is now a `SecureString`. -* Updated parameters to `New-AzureBatchComputeNodeUser`. - - The `Password` parameter is now a `SecureString`. -* Updated parameters to `Set-AzureBatchComputeNodeUser`. - - The `Password` parameter is now a `SecureString`. -* Renamed the `Name` parameter to `Path` on `Get-AzureBatchNodeFile`, `Get-AzureBatchNodeFileContent`, and `Remove-AzureBatchNodeFile`. - - A `Name` alias was created for the `Path` parameter. -* Changes to objects: - - Removed the `RunElevated` property on `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`. The `UserIdentity` property has been added to replace `RunElevated`. Equivalent behavior to `RunElevated = $true` can be achieved by constructing a `PSUserIdentity` as shown below: - - $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin") - - $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser - - Added the `AuthenticationTokenSettings` property to `PSCloudTask` and `PSJobManagerTask`. - - Added the `OutputFiles` property to `PSCloudTask`, and `PSJobManagerTask`. - - Added the `ContainerSettings` property to `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`. - - Added the `AllowLowPriorityNode` property to `PSJobManagerTask`. - - Renamed the `SchedulingError` property on `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation` to `FailureInformation`. - - `FailureInformation` is returned any time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature. - - Renamed `PSTaskSchedulingError` to `PSTaskFailureInformation`. - - Added the `ContainerInformation` and `Result` properties to `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation`. - - Added the `UserAccounts` property to `PSCloudPool` and `PSPoolSpecification`. - - Added the `TargetLowPriorityComputeNodes` property to `PSCloudPool` and `PSPoolSpecification`, and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`. - - Renamed the `Name` property on `PSNodeFile` to `Path`. - - Added the `EndpointConfiguration` and `IsDedicated` property to `PSComputeNode`. - - Renamed the `SchedulingError` property on `PSExitConditions` to `PreProcessingError`. - - Added the `FileUploadError` to `PSExitConditions`. - - Added the `DependencyAction` property to `PSExitOptions`. - - Added the `OSDisk`, `ContainerConfiguration`, `DataDisks`, and `LicenseType` properties to `PSVirtualMachineConfiguration`. - - Added the `VirtualMachineImageId` property to `PSImageReference`. Note that in order to allow deploying nodes using custom VHDs, the `BatchAccountContext` must be using Azure Active Directory authentication. - - Added the `OnAllTasksComplete` and `OnTaskFailure` properties to `PSJobSpecification`. - - Added the `EndpointConfiguration` property to `PSNetworkConfiguration`. - - Renamed `ResizeError` to `ResizeErrors` on `PSCloudPool`, and it is now a collection. - - `PSMultiInstanceSettings` constructor no longer takes a required `numberOfInstances` parameter, instead it takes a required `coordinationCommandLine` parameter. -* Added support for Azure Active Directory based authentication. - - To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`. - - For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet. -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/AzureBatch/ChangeLog.md b/src/ResourceManager/AzureBatch/ChangeLog.md index 75ff9ef1d4..c59ee3b3b0 100644 --- a/src/ResourceManager/AzureBatch/ChangeLog.md +++ b/src/ResourceManager/AzureBatch/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. * Added new parameters to `New-AzureRmBatchAccount`. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs index a11a23f27d..7f4db37f43 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs index 8fdcb7de22..30fd1bca30 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Batch.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index e969643fb8..ee0d5d1ebe 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -212,13 +212,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Azure Disk Encryption Extension Commands - - New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks - - New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension\ -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Compute/ChangeLog.md b/src/ResourceManager/Compute/ChangeLog.md index a9610beff0..50e5de1af9 100644 --- a/src/ResourceManager/Compute/ChangeLog.md +++ b/src/ResourceManager/Compute/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Azure Disk Encryption Extension Commands - New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs index 9e4b46f716..71a0d754b5 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ using Xunit; [assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs index a433272a0c..a778c5c37b 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 index a7bdfd0d31..b6dcc22679 100644 --- a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 +++ b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -135,8 +135,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/DataFactories/ChangeLog.md b/src/ResourceManager/DataFactories/ChangeLog.md index b8bd5be37d..a6588827c7 100644 --- a/src/ResourceManager/DataFactories/ChangeLog.md +++ b/src/ResourceManager/DataFactories/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs index 06b6d75128..ba6ca629a0 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ using Xunit; [assembly: Guid("8E86B542-B22F-44B6-8053-3F5118E04DEA")] -[assembly: AssemblyVersion("0.3.0")] -[assembly: AssemblyFileVersion("0.3.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs index 7820831554..69c065fd3a 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("0.3.0")] -[assembly: AssemblyFileVersion("0.3.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.DataFactories.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 index 303e64d0ee..6c62a170fd 100644 --- a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 +++ b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -143,8 +143,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/HDInsight/ChangeLog.md b/src/ResourceManager/HDInsight/ChangeLog.md index 9f4325721c..e70d84a86b 100644 --- a/src/ResourceManager/HDInsight/ChangeLog.md +++ b/src/ResourceManager/HDInsight/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs index 6e57dcc40d..01cd0e426b 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs @@ -46,6 +46,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs index d6fd7077ab..b20aabc743 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs @@ -27,5 +27,5 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("57ad7b0e-1f56-4166-b1f9-ec6512139a54")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 index 086b70c14c..f096a167cb 100644 --- a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 +++ b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -151,8 +151,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/KeyVault/ChangeLog.md b/src/ResourceManager/KeyVault/ChangeLog.md index 2e4e1c3f2f..d3a0b56105 100644 --- a/src/ResourceManager/KeyVault/ChangeLog.md +++ b/src/ResourceManager/KeyVault/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs index 6743ebea4a..313d18aef9 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion( "3.0.0.0" )] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion( "4.0.1.0" )] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs index 6e607836ea..a381e8e696 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs @@ -29,8 +29,8 @@ using System.Runtime.InteropServices; [assembly: CLSCompliant(false)] [assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.KeyVault.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 index c159cb42e0..aad18a07b0 100644 --- a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 +++ b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -137,14 +137,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added cmdlets to perform instant file recovery. - - Get-AzureRmRecoveryServicesBackupRPMountScript - - Disable-AzureRmRecoveryServicesBackupRPMountScript -* Updated RecoveryServices.Backup SDK version to the latest -* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves. -* Fixes https://github.com/Azure/azure-powershell/issues/3164 -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md b/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md index 0b180517ae..fe1c2e4422 100644 --- a/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Added cmdlets to perform instant file recovery. - Get-AzureRmRecoveryServicesBackupRPMountScript diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs index 1a7f384fc3..2b4185f7ba 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs index e20e5b6806..eebc6c516e 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 index c36135aa9f..81359a9c44 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.2.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -244,28 +244,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - - New-AzureRmRecoveryServicesAsrPolicy - - New-AzureRmRecoveryServicesAsrProtectedItem - - Update-AzureRmRecoveryServicesAsrPolicy - - Update-AzureRmRecoveryServicesAsrProtectionDirection -* Added support to AAD-based vault -* Added cmdlets to manage VCenter resources - - Get-AzureRmRecoveryServicesAsrVCenter - - New-AzureRmRecoveryServicesAsrVCenter - - Remove-AzureRmRecoveryServicesAsrVCenter - - Update-AzureRmRecoveryServicesAsrVCenter -* Added other cmdlets - - Get-AzureRmRecoveryServicesAsrAlertSetting - - Get-AzureRmRecoveryServicesAsrEvent - - New-AzureRmRecoveryServicesAsrProtectableItem - - Set-AzureRmRecoveryServicesAsrAlertSetting - - Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob - - Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob - - Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob - - Update-AzureRmRecoveryServicesAsrMobilityService -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md b/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md index e5530024b6..8b61ddcabf 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 0.2.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 0.2.0 * Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - New-AzureRmRecoveryServicesAsrPolicy diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs index ebfa563e85..5cdc78dcf3 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs @@ -43,6 +43,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.2.1")] +[assembly: AssemblyFileVersion("0.2.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs index 9c0d5e9878..9f08ed17e5 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ using Microsoft.WindowsAzure.Commands.Common; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.2.1")] +[assembly: AssemblyFileVersion("0.2.1")] diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 6d59f1bd32..c70ed777af 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -114,8 +114,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices/ChangeLog.md b/src/ResourceManager/RecoveryServices/ChangeLog.md index d222fc919f..6aff22d658 100644 --- a/src/ResourceManager/RecoveryServices/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs index 94e93099c0..eef68d15b2 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs @@ -43,5 +43,5 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs index acfc44724d..dbaa1cacc2 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 index 13d545347c..090f60ac93 100644 --- a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 +++ b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -122,8 +122,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RedisCache/ChangeLog.md b/src/ResourceManager/RedisCache/ChangeLog.md index d222fc919f..6aff22d658 100644 --- a/src/ResourceManager/RedisCache/ChangeLog.md +++ b/src/ResourceManager/RedisCache/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs index 78136f2532..30e9ffae4a 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ using Xunit; [assembly: Guid("C01CC766-EAA4-4CA3-A595-6C4681316532")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs index 398bbf4ad6..df88d3d0de 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("6D663ED9-C1A5-438F-B88A-D709562538C6")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.RedisCache.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 8b51d9bcf1..2e08cc7d32 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -164,8 +164,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/SiteRecovery/ChangeLog.md b/src/ResourceManager/SiteRecovery/ChangeLog.md index fc4db6f834..da4a1ea531 100644 --- a/src/ResourceManager/SiteRecovery/ChangeLog.md +++ b/src/ResourceManager/SiteRecovery/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 5.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs index 64a56e47f3..bce3c1342d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs @@ -43,6 +43,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs index a48b0ecbdd..f90daff597 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/Sql/AzureRM.Sql.psd1 b/src/ResourceManager/Sql/AzureRM.Sql.psd1 index a92536f4dc..4411e29bcd 100644 --- a/src/ResourceManager/Sql/AzureRM.Sql.psd1 +++ b/src/ResourceManager/Sql/AzureRM.Sql.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -229,21 +229,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Adding support for list and cancel the asynchronous updateslo operation on the database - - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. - - add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database. -* Adding support for Zone Redundancy for databases and elastic pools - - Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase - - Adding ZoneRedundant switch parameter to Set-AzureRmSqlDatabase - - Adding ZoneRedundant switch parameter to New-AzureRmSqlElasticPool - - Adding ZoneRedundant switch parameter to Set-AzureRmSqlElasticPool -* Adding support for Server DNS Aliases - - Adding Get-AzureRmSqlServerDnsAlias cmdlet which gets server dns aliases by server and alias name or a list of server dns aliases for an azure Sql Server. - - Adding New-AzureRmSqlServerDnsAlias cmdlet which creates new server dns alias for a given Azure Sql server - - Adding Set-AzurermSqlServerDnsAlias cmlet which allows updating a Azure Sql Server to which server dns alias is pointing - - Adding Remove-AzureRmSqlServerDnsAlias cmdlet which removes a server dns alias for a Azure Sql Server -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Sql/ChangeLog.md b/src/ResourceManager/Sql/ChangeLog.md index d858e98e5f..7dcfc3f3fe 100644 --- a/src/ResourceManager/Sql/ChangeLog.md +++ b/src/ResourceManager/Sql/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Adding support for list and cancel the asynchronous updateslo operation on the database - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs index a833584f78..1bc91a0962 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using Xunit; // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("f6f46134-9c1b-4599-8dd0-789299c076ef")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs index 5341820b3f..a4f5fde3f8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs @@ -44,8 +44,8 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Resources.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs index ab702bcc62..497bc772f5 100644 --- a/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs @@ -20,8 +20,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Microsoft Azure SQL Server Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManager/Storage/AzureRM.Storage.psd1 b/src/ResourceManager/Storage/AzureRM.Storage.psd1 index 6f68915f9d..a9b763ea54 100644 --- a/src/ResourceManager/Storage/AzureRM.Storage.psd1 +++ b/src/ResourceManager/Storage/AzureRM.Storage.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -122,8 +122,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Storage/ChangeLog.md b/src/ResourceManager/Storage/ChangeLog.md index c0ecf97ee7..5c3ce42818 100644 --- a/src/ResourceManager/Storage/ChangeLog.md +++ b/src/ResourceManager/Storage/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs index 7c28a44929..47e6eea009 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs index 5036b06233..98cd2fef7c 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs @@ -46,5 +46,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 index e32abd145b..7404856c55 100644 --- a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 +++ b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -129,8 +129,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/StreamAnalytics/ChangeLog.md b/src/ResourceManager/StreamAnalytics/ChangeLog.md index d222fc919f..6aff22d658 100644 --- a/src/ResourceManager/StreamAnalytics/ChangeLog.md +++ b/src/ResourceManager/StreamAnalytics/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs index e3db41a738..e92e56012a 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using Xunit; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs index a7842fd405..218463bcc4 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("9188beb8-68c3-404a-91e2-6f287f162a52")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.StreamAnalytics.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/tools/AzureRM/AzureRM.psd1 b/tools/AzureRM/AzureRM.psd1 index 88179885e0..dd7fcba124 100644 --- a/tools/AzureRM/AzureRM.psd1 +++ b/tools/AzureRM/AzureRM.psd1 @@ -12,7 +12,7 @@ RootModule = '.\AzureRM.psm1' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -55,19 +55,19 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'Azure.Storage'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.AnalysisServices'; RequiredVersion = '0.5.0'; }, @{ModuleName = 'Azure.AnalysisServices'; RequiredVersion = '0.5.0'; }, - @{ModuleName = 'AzureRM.ApiManagement'; RequiredVersion = '5.0.0'; }, + @{ModuleName = 'AzureRM.ApiManagement'; RequiredVersion = '5.0.1'; }, @{ModuleName = 'AzureRM.ApplicationInsights'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'AzureRM.Automation'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Backup'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Batch'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.Backup'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.Batch'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Billing'; RequiredVersion = '0.14.0'; }, @{ModuleName = 'AzureRM.Cdn'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.CognitiveServices'; RequiredVersion = '0.9.0'; }, - @{ModuleName = 'AzureRM.Compute'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.Compute'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Consumption'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.ContainerInstance'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'AzureRM.ContainerRegistry'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'AzureRM.DataFactories'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.DataFactories'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.DataFactoryV2'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.DataLakeAnalytics'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.DataLakeStore'; RequiredVersion = '5.0.0'; }, @@ -75,10 +75,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'AzureRM.Dns'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.EventGrid'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.5.0'; }, - @{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Insights'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.IoTHub'; RequiredVersion = '3.0.0'; }, - @{ModuleName = 'AzureRM.KeyVault'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.KeyVault'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.LogicApp'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.MachineLearning'; RequiredVersion = '0.16.0'; }, @{ModuleName = 'AzureRM.MachineLearningCompute'; RequiredVersion = '0.2.0'; }, @@ -88,20 +88,20 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'AzureRM.NotificationHubs'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.OperationalInsights'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.PowerBIEmbedded'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices.Backup'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices.SiteRecovery'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'AzureRM.RedisCache'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.RecoveryServices'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.RecoveryServices.Backup'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.RecoveryServices.SiteRecovery'; RequiredVersion = '0.2.1'; }, + @{ModuleName = 'AzureRM.RedisCache'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Relay'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.Resources'; RequiredVersion = '5.0.0'; }, @{ModuleName = 'AzureRM.Scheduler'; RequiredVersion = '0.16.0'; }, @{ModuleName = 'AzureRM.ServerManagement'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.5.0'; }, @{ModuleName = 'AzureRM.ServiceFabric'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.0'; }, - @{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Storage'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.StreamAnalytics'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.1'; }, + @{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.Storage'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.StreamAnalytics'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Tags'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.TrafficManager'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.UsageAggregates'; RequiredVersion = '4.0.0'; }, @@ -161,121 +161,23 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '## 2017.11.8 - Version 5.0.0 -* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* All cmdlets in AzureRM now support online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser -* AnalysisServices - * Fixed Synchronize-AzureAsInstance command to work with new AsAzure REST API for sync -* ApiManagement - * Please see the migration guide for breaking changes made to ApiManagement this release - * Updated Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510 - * Updated New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069 -* ApplicationInsights - * Add commands to get/create/remove applicaiton insights resource - - Get/New/Remove-AzureRmApplicationInsights - * Add commands to get/update pricing/daily cap of applicaiton insights resource - - Get-AzureRmApplicationInsights -IncludeDailyCap - - Set-AzureRmApplicationInsightsPricingPlan - - Set-AzureRmApplicationInsightsDailyCap - * Add commands to get/create/remove/update continuous export of applicaiton insights resource - - Get/New/Remove/Set-AzureRmApplicationInsightsContinuousExport - * Add commands to get/create/remove api keys of applicaiton insights resoruce - - Get/New/Remove-AzureRmApplicationInsightsApiKey -* AzureBatch - * Please see the migration guide for breaking changes made to Batch this release - * Please see the Batch change log for a full list of changes made this release - * Added support for Azure Active Directory based authentication. - - To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`. - - For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet. -* Compute - * Azure Disk Encryption Extension Commands - - New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks - - New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension -* DataLakeAnalytics - * Please see the migration guide for breaking changes made to DataLakeAnalytics this release - * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsAccount - - List to List - * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsJob - - List to List -* DataLakeStore - * Please see the migration guide for breaking changes made to DataLakeStore this release - * Changed one of the two OutputTypes of Get-AzureRmDataLakeStoreAccount - - List to List -* Dns - * Support for CAA record types in Azure DNS - - Supports all operations on CAA record type -* EventHub - * Please see the migration guide for breaking changes made to EventHub this release -* Insights - * Please see the migration guide for breaking changes made to Insights this release -* Network - * Please see the migration guide for breaking changes made to Network this release - * Added cmdlet to list available internet service providers for a specified Azure region - - Get-AzureRmNetworkWatcherReachabilityProvidersList - * Added cmdlet to get the relative latency score for internet service providers from a specified location to Azure regions - - Get-AzureRmNetworkWatcherReachabilityReport -* Profile - - Set-AzureRmDefault - - Use this cmdlet to set a default resource group. This will make the -ResourceGroup parameter optional for some cmdlets, and will use the default when a resource group is not specified - - ```Set-AzureRmDefault -ResourceGroupName "ExampleResourceGroup"``` - - If resource group specified exists in the subscription, this resource group will be set to default. Otherwise, the resource group will be created and then set to default. - - Get-AzureRmDefault - - Use this cmdlet to get the current default resource group (and other defaults in the future). - - ```Get-AzureRmDefault -ResourceGroup``` - - Clear-AzureRmDefault - - Use this cmdlet to remove the current default resource group - - ```Clear-AzureRmDefault -ResourceGroup``` - - Add-AzureRmEnvironment and Set-AzureRmEnvironment - - Add the BatchAudience parameter, which allows you to specify the Azure Batch Active Directory audience to use when acquiring authentication tokens for the Batch service. -* RecoveryServices.Backup - * Added cmdlets to perform instant file recovery. - - Get-AzureRmRecoveryServicesBackupRPMountScript - - Disable-AzureRmRecoveryServicesBackupRPMountScript - * Updated RecoveryServices.Backup SDK version to the latest - * Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves. - * Fixes https://github.com/Azure/azure-powershell/issues/3164 -* RecoveryServices.SiteRecovery - * Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - - New-AzureRmRecoveryServicesAsrPolicy - - New-AzureRmRecoveryServicesAsrProtectedItem - - Update-AzureRmRecoveryServicesAsrPolicy - - Update-AzureRmRecoveryServicesAsrProtectionDirection - * Added support to AAD-based vault - * Added cmdlets to manage VCenter resources - - Get-AzureRmRecoveryServicesAsrVCenter - - New-AzureRmRecoveryServicesAsrVCenter - - Remove-AzureRmRecoveryServicesAsrVCenter - - Update-AzureRmRecoveryServicesAsrVCenter - * Added other cmdlets - - Get-AzureRmRecoveryServicesAsrAlertSetting - - Get-AzureRmRecoveryServicesAsrEvent - - New-AzureRmRecoveryServicesAsrProtectableItem - - Set-AzureRmRecoveryServicesAsrAlertSetting - - Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob - - Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob - - Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob - - Update-AzureRmRecoveryServicesAsrMobilityService -* ServiceBus - * Please see the migration guide for changes made to ServiceBus this release. -* Sql - * Adding support for list and cancel the asynchronous updateslo operation on the database - - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. - - add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database. - * Adding support for Zone Redundancy for databases and elastic pools - - Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase, Set-AzureRmSqlDatabase, New-AzureRmSqlElasticPool, Set-AzureRmSqlElasticPool - * Adding support for Server DNS Aliases - - Get-AzureRmSqlServerDnsAlias: gets server dns aliases by server and alias name or a list of server dns aliases for an azure Sql Server. - - New-AzureRmSqlServerDnsAlias: creates new server dns alias for a given Azure Sql server - - Set-AzurermSqlServerDnsAlias: allows updating a Azure Sql Server to which server dns alias is pointing - - Remove-AzureRmSqlServerDnsAlias: removes a server dns alias for a Azure Sql Server -* Azure.Storage - * Upgrade to Azure Storage Client Library 8.5.0 and Azure Storage DataMovement Library 0.6.3 - * Add File Share Snapshot Support Feature - - Add ''SnapshotTime'' parameter to Get-AzureStorageShare - - Add ''IncludeAllSnapshot'' parameter to Remove-AzureStorageShare' + ReleaseNotes = '## 2017.11.10 - Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules: + - AzureRM.ApiManagement + - AzureRM.Backup + - AzureRM.Batch + - AzureRM.Compute + - AzureRM.DataFactories + - AzureRM.HDInsight + - AzureRM.KeyVault + - AzureRM.RecoveryServices + - AzureRM.RecoveryServices.Backup + - AzureRM.RecoveryServices.SiteRecovery + - AzureRM.RedisCache + - AzureRM.SiteRecovery + - AzureRM.Sql + - AzureRM.Storage + - AzureRM.StreamAnalytics' # External dependent modules of this module # ExternalModuleDependencies = '' From abd6e0627a53814f105c1a0c4651163ecd38330c Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Fri, 10 Nov 2017 09:55:21 -0800 Subject: [PATCH 30/37] Update testfx based on comments --- documentation/Using-Azure-TestFramework.md | 20 +-- .../EnvironmentSetupHelper.cs | 34 ++--- tools/Modules/TestFx-Tasks.psd1 | 4 +- tools/Modules/TestFx-Tasks.psm1 | 123 +++++++++++------- tools/Modules/Tests/RepoModuleTests.ps1 | 19 ++- 5 files changed, 118 insertions(+), 82 deletions(-) diff --git a/documentation/Using-Azure-TestFramework.md b/documentation/Using-Azure-TestFramework.md index 0733d4153d..fae66d6015 100644 --- a/documentation/Using-Azure-TestFramework.md +++ b/documentation/Using-Azure-TestFramework.md @@ -3,7 +3,7 @@ - [Getting Started](#getting-started) - [Acquiring TestFramework](#acquiring-testframework) - [Setup prior to Record/Playback tests](#setup-prior-to-record-or-playback-of-tests) - - [New-AzureCredential](#new-azurecredential) + - [New-TestCredential](#new-testcredential) - [Create New Service Principal](#create-new-service-principal) - [Use Existing Service Principal](#use-existing-service-principal) - [UserId](#userid) @@ -35,18 +35,18 @@ Instructions to manually download it are available on NuGet. However TestFramewo ## Setup prior to Record or Playback of tests -In order to Record/Playback a test, you need to setup a connection string that consists various key/value pairs that provides information to the test environment. You have three options to set up the connection string: run the [New-AzureCredential cmdlet](#new-azurecredential) (recommended), run the [Set-TestEnvironment cmdlet](#set-testenvironment), or [manually set the environment variables](#manually-set-environment-variables). +In order to Record/Playback a test, you need to setup a connection string that consists of various key/value pairs that provides information to the test environment. You have three options to set up the connection string: run the [New-AzureCredential cmdlet](#new-azurecredential) (recommended), run the [Set-TestEnvironment cmdlet](#set-testenvironment), or [manually set the environment variables](#manually-set-environment-variables). -### New-AzureCredential +### New-TestCredential This cmdlet, located in Repo-Tasks, will allow you to create a credentials file (located in C:/Users/\/.azure/testcredentials.json) that will be used to set the environment variable when scenario tests are run. This credentials file will be used in all future sessions unless it is deleted or the environment variables are manually set. #### Create New Service Principal -Using a Service Principal is the preferred option for record because it works with both .NET Framework and .NET Core. In order to create a new Service Principal run this command: +Using a Service Principal is the preferred option for recording test because it works with both .NET Framework and .NET Core. In order to create a new Service Principal run this command with a unused ServicePrincipal display name: ```powershell -New-AzureCredential -NewServicePrincipalDisplayName "ScenarioTestCredentials" -NewServicePrincipalSecret ` +New-TestCredential -ServicePrincipalDisplayName "ScenarioTestCredentials" -ServicePrincipalSecret ` "testpassword" -SubscriptionId -TenantId -RecordMode "Record" ``` @@ -54,10 +54,10 @@ This command will create a new Service Principal, set the correct role assignmen #### Use Existing Service Principal -If you would like to use an existing Service Principal, run: +If you would like to use an existing Service Principal, run this command with an existing ServicePrincipal display name and secret: ```powershell -New-AzureCredential -ServicePrincipalId -ServicePrincipalSecret ` +New-TestCredential -ServicePrincipalDisplayName "Existing Service Principal" -ServicePrincipalSecret ` "testpassword" -SubscriptionId -TenantId -RecordMode "Record" ``` @@ -66,7 +66,7 @@ New-AzureCredential -ServicePrincipalId -ServicePrincipalSe This is no longer the preferred option because it only works when running on .NET Framework. When running on .NET Core you may get an error like `Interactive Login is supported only in NET45 projects`. Additionally, you will have to manually log in when running the scenario tests rather than being automatically validated. ```powershell -New-AzureCredential -UserId "exampleuser@microsoft.com" -SubscriptionId ` +New-TestCredential -UserId "exampleuser@microsoft.com" -SubscriptionId ` -TenantId -RecordMode "Record" ``` @@ -76,7 +76,7 @@ This cmdlet, located in Repo-Tasks, will directly set the environment variable f #### Existing Service Principal -This is the preferred option for record because it works with both .NET Framework and .NET Core. +This is the preferred option for recording tests because it works with both .NET Framework and .NET Core. ```powershell Set-TestEnvironment -ServicePrincipalId -ServicePrincipalSecret ` @@ -122,7 +122,7 @@ To use this option, set the following environment variables before starting Visu #### Record Test with ServicePrincipal -This is the preferred option for record because it works with both .NET Framework and .NET Core. +This is the preferred option for recording tests because it works with both .NET Framework and .NET Core. To create a service principal, follow the [Azure AD guide to create a Application Service Principal](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-service-principal-portal#create-an-active-directory-application). The application type should be `Web app / API` and the sign-on URL value is irrelevant (you can set any value). diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 69e7c7d2b4..dc7f50c2d2 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -202,7 +202,7 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest public void SetEnvironmentVariableFromCredentialFile() { - var filePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.azure/testcredentials.json"; + var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".azure/testcredentials.json"); Dictionary credentials; using (StreamReader r = new StreamReader(filePath)) { @@ -213,77 +213,77 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest if (Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION") == null) { StringBuilder formattedConnectionString = new StringBuilder(); - formattedConnectionString.Append(String.Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", credentials["SubscriptionId"], credentials["HttpRecorderMode"], credentials["Environment"])); + formattedConnectionString.AppendFormat("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", credentials["SubscriptionId"], credentials["HttpRecorderMode"], credentials["Environment"]); if (credentials.ContainsKey("UserId")) { - formattedConnectionString.Append(String.Format(";UserId={0}", credentials["UserId"])); + formattedConnectionString.AppendFormat(";UserId={0}", credentials["UserId"]); } if (credentials.ContainsKey("ServicePrincipal")) { - formattedConnectionString.Append(String.Format(";ServicePrincipal={0}", credentials["ServicePrincipal"])); - formattedConnectionString.Append(String.Format(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"])); + formattedConnectionString.AppendFormat(";ServicePrincipal={0}", credentials["ServicePrincipal"]); + formattedConnectionString.AppendFormat(";ServicePrincipalSecret={0}", credentials["ServicePrincipalSecret"]); } if (credentials.ContainsKey("TenantId")) { - formattedConnectionString.Append(String.Format(";AADTenant={0}", credentials["TenantId"])); + formattedConnectionString.AppendFormat(";AADTenant={0}", credentials["TenantId"]); } if (credentials.ContainsKey("ResourceManagementUri")) { - formattedConnectionString.Append(String.Format(";ResourceManagementUri={0}", credentials["ResourceManagementUri"])); + formattedConnectionString.AppendFormat(";ResourceManagementUri={0}", credentials["ResourceManagementUri"]); } if (credentials.ContainsKey("GraphUri")) { - formattedConnectionString.Append(String.Format(";GraphUri={0}", credentials["GraphUri"])); + formattedConnectionString.AppendFormat(";GraphUri={0}", credentials["GraphUri"]); } if (credentials.ContainsKey("AADAuthUri")) { - formattedConnectionString.Append(String.Format(";AADAuthUri={0}", credentials["AADAuthUri"])); + formattedConnectionString.AppendFormat(";AADAuthUri={0}", credentials["AADAuthUri"]); } if (credentials.ContainsKey("AADTokenAudienceUri")) { - formattedConnectionString.Append(String.Format(";AADTokenAudienceUri={0}", credentials["AADTokenAudienceUri"])); + formattedConnectionString.AppendFormat(";AADTokenAudienceUri={0}", credentials["AADTokenAudienceUri"]); } if (credentials.ContainsKey("GraphTokenAudienceUri")) { - formattedConnectionString.Append(String.Format(";GraphTokenAudienceUri={0}", credentials["GraphTokenAudienceUri"])); + formattedConnectionString.AppendFormat(";GraphTokenAudienceUri={0}", credentials["GraphTokenAudienceUri"]); } if (credentials.ContainsKey("IbizaPortalUri")) { - formattedConnectionString.Append(String.Format(";IbizaPortalUri={0}", credentials["IbizaPortalUri"])); + formattedConnectionString.AppendFormat(";IbizaPortalUri={0}", credentials["IbizaPortalUri"]); } if (credentials.ContainsKey("ServiceManagementUri")) { - formattedConnectionString.Append(String.Format(";ServiceManagementUri={0}", credentials["ServiceManagementUri"])); + formattedConnectionString.AppendFormat(";ServiceManagementUri={0}", credentials["ServiceManagementUri"]); } if (credentials.ContainsKey("RdfePortalUri")) { - formattedConnectionString.Append(String.Format(";RdfePortalUri={0}", credentials["RdfePortalUri"])); + formattedConnectionString.AppendFormat(";RdfePortalUri={0}", credentials["RdfePortalUri"]); } if (credentials.ContainsKey("GalleryUri")) { - formattedConnectionString.Append(String.Format(";GalleryUri={0}", credentials["GalleryUri"])); + formattedConnectionString.AppendFormat(";GalleryUri={0}", credentials["GalleryUri"]); } if (credentials.ContainsKey("DataLakeStoreServiceUri")) { - formattedConnectionString.Append(String.Format(";DataLakeStoreServiceUri={0}", credentials["DataLakeStoreServiceUri"])); + formattedConnectionString.AppendFormat(";DataLakeStoreServiceUri={0}", credentials["DataLakeStoreServiceUri"]); } if (credentials.ContainsKey("DataLakeAnalyticsJobAndCatalogServiceUri")) { - formattedConnectionString.Append(String.Format(";DataLakeAnalyticsJobAndCatalogServiceUri={0}", credentials["DataLakeAnalyticsJobAndCatalogServiceUri"])); + formattedConnectionString.AppendFormat(";DataLakeAnalyticsJobAndCatalogServiceUri={0}", credentials["DataLakeAnalyticsJobAndCatalogServiceUri"]); } Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", formattedConnectionString.ToString()); diff --git a/tools/Modules/TestFx-Tasks.psd1 b/tools/Modules/TestFx-Tasks.psd1 index 09b9b8ad0c..52c5259398 100644 --- a/tools/Modules/TestFx-Tasks.psd1 +++ b/tools/Modules/TestFx-Tasks.psd1 @@ -51,7 +51,7 @@ Copyright = '(c) 2016 ShahAbhijeet. All rights reserved.' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() +RequiredModules = @(@{ModuleName = 'AzureRM.Resources'; ModuleVersion = '5.0.0'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() @@ -69,7 +69,7 @@ Copyright = '(c) 2016 ShahAbhijeet. All rights reserved.' # NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = 'Set-TestEnvironment', 'Remove-ServicePrincipal', 'New-ServicePrincipal', 'Set-SPNRole', 'New-AzureCredential' +FunctionsToExport = 'Set-TestEnvironment', 'Remove-ServicePrincipal', 'New-ServicePrincipal', 'Set-SPNRole', 'New-TestCredential' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() diff --git a/tools/Modules/TestFx-Tasks.psm1 b/tools/Modules/TestFx-Tasks.psm1 index a195b8c1aa..f99fbc6550 100644 --- a/tools/Modules/TestFx-Tasks.psm1 +++ b/tools/Modules/TestFx-Tasks.psm1 @@ -1,30 +1,22 @@ -Function New-AzureCredential +Function New-TestCredential { [CmdletBinding( - DefaultParameterSetName='CreateSpnParamSet', + DefaultParameterSetName='SpnParamSet', SupportsShouldProcess=$true )] param( - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal DisplayName you would like to set')] + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] [ValidateNotNullOrEmpty()] - [string]$NewServicePrincipalDisplayName, + [string]$ServicePrincipalDisplayName, - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal password')] + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal Secret/ClientId Secret you would like to use')] [ValidateNotNullOrEmpty()] - [string]$NewServicePrincipalSecret, + [securestring]$ServicePrincipalSecret, [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] [string]$UserId, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal/ClientId you would like to use')] - [ValidateNotNullOrEmpty()] - [string]$ServicePrincipalId, - - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage='ServicePrincipal Secret/ClientId Secret you would like to use')] - [ValidateNotNullOrEmpty()] - [string]$ServicePrincipalSecret, - [Parameter(ParameterSetName='CreateSpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "SubscriptionId you would like to use")] @@ -42,21 +34,44 @@ [ValidateSet("Playback", "Record", "None")] [string]$RecordMode, + [Parameter(Mandatory=$false, HelpMessage="Environment you would like to run in")] [ValidateSet("Prod", "Dogfood", "Current", "Next", "Custom")] [string]$TargetEnvironment='Prod', - - [string]$ResourceManagementUri, - [string]$GraphUri, - [string]$AADAuthUri, - [string]$AADTokenAudienceUri, - [string]$GraphTokenAudienceUri, - [string]$IbizaPortalUri, - [string]$ServiceManagementUri, - [string]$RdfePortalUri, - [string]$GalleryUri, - [string]$DataLakeStoreServiceUri, + + [Parameter(Mandatory=$false)] + [string]$ResourceManagementUri, + + [Parameter(Mandatory=$false)] + [string]$GraphUri, + + [Parameter(Mandatory=$false)] + [string]$AADAuthUri, + + [Parameter(Mandatory=$false)] + [string]$AADTokenAudienceUri, + + [Parameter(Mandatory=$false)] + [string]$GraphTokenAudienceUri, + + [Parameter(Mandatory=$false)] + [string]$IbizaPortalUri, + + [Parameter(Mandatory=$false)] + [string]$ServiceManagementUri, + + [Parameter(Mandatory=$false)] + [string]$RdfePortalUri, + + [Parameter(Mandatory=$false)] + [string]$GalleryUri, + + [Parameter(Mandatory=$false)] + [string]$DataLakeStoreServiceUri, + + [Parameter(Mandatory=$false)] [string]$DataLakeAnalyticsJobAndCatalogServiceUri, + [Parameter(Mandatory=$false)] [switch]$Force ) @@ -65,35 +80,47 @@ $credentials.HttpRecorderMode = $RecordMode $credentials.Environment = $TargetEnvironment - if ([string]::IsNullOrEmpty($NewServicePrincipalDisplayName) -eq $false) { - $Scope = "/subscriptions/" + $SubscriptionId - $SecureStringSecret = ConvertTo-SecureString $NewServicePrincipalSecret -AsPlainText -Force - $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $NewServicePrincipalDisplayName -Password $SecureStringSecret - Write-Host "New ServicePrincipal created: " + $NewServicePrincipal - - $NewRole = $null - $Retries = 0; - While ($NewRole -eq $null -and $Retries -le 6) + if ([string]::IsNullOrEmpty($ServicePrincipalDisplayName) -eq $false) { + $existingServicePrincipal = Get-AzureRmADServicePrincipal -SearchString $ServicePrincipalDisplayName | Where-Object {$_.DisplayName -eq $ServicePrincipalDisplayName} + if ($existingServicePrincipal -eq $null -and ($Force -or $PSCmdlet.ShouldContinue("ServicePrincipal `"" + $ServicePrincipalDisplayName + "`" does not exist, would you like to create a new ServicePrincipal with this name?", "Create ServicePrincipal?"))) { - # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) - Start-Sleep 5 - New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue - $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue - $Retries++; + if ($TargetEnvironment -ne 'Prod') + { + throw "To create a new Service Principal you must be in Prod. Please run again with `$TargetEnvironment set to 'Prod'" + } + $Scope = "/subscriptions/" + $SubscriptionId + $NewServicePrincipal = New-AzureRMADServicePrincipal -DisplayName $ServicePrincipalDisplayName -Password $ServicePrincipalSecret + Write-Host "New ServicePrincipal created: " + $NewServicePrincipal.ApplicationId + + $NewRole = $null + $Retries = 0; + While ($NewRole -eq $null -and $Retries -le 6) + { + # Sleep here for a few seconds to allow the service principal application to become active (should only take a couple of seconds normally) + Start-Sleep 5 + New-AzureRMRoleAssignment -RoleDefinitionName Contributor -ServicePrincipalName $NewServicePrincipal.ApplicationId -Scope $Scope | Write-Verbose -ErrorAction SilentlyContinue + $NewRole = Get-AzureRMRoleAssignment -ObjectId $NewServicePrincipal.Id -ErrorAction SilentlyContinue + $Retries++; + } + + $credentials.ServicePrincipal = $NewServicePrincipal.ApplicationId + $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($ServicePrincipalSecret) + $UnsecurePassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) + $credentials.ServicePrincipalSecret = $UnsecurePassword } - $credentials.ServicePrincipal = $NewServicePrincipal.ApplicationId - $credentials.ServicePrincipalSecret = $NewServicePrincipalSecret + else + { + $credentials.ServicePrincipal = $existingServicePrincipal.ApplicationId + $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($ServicePrincipalSecret) + $UnsecurePassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) + $credentials.ServicePrincipalSecret = $UnsecurePassword + } } if ([string]::IsNullOrEmpty($UserId) -eq $false) { $credentials.UserId = $UserId } - - if ([string]::IsNullOrEmpty($ServicePrincipalId) -eq $false) { - $credentials.ServicePrincipal = $ServicePrincipalId - $credentials.ServicePrincipalSecret = $ServicePrincipalSecret - } if ([string]::IsNullOrEmpty($TenantId) -eq $false) { $credentials.TenantId = $TenantId @@ -187,7 +214,7 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateNotNullOrEmpty()] [string]$TenantId, - [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "Would you like to record or playback your tests?")] + [Parameter(ParameterSetName='SpnParamSet', Mandatory=$true, HelpMessage = "Would you like to record or playback your tests?")] [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "Would you like to record or playback your tests?")] [ValidateSet("Playback", "Record", "None")] [string]$RecordMode='Playback', @@ -353,4 +380,4 @@ Function Print-ConnectionString([string]$uid, [string]$subId, [string]$aadTenant } export-modulemember -Function Set-TestEnvironment -export-modulemember -Function New-AzureCredential +export-modulemember -Function New-TestCredential diff --git a/tools/Modules/Tests/RepoModuleTests.ps1 b/tools/Modules/Tests/RepoModuleTests.ps1 index 095066f339..c1f5dedff3 100644 --- a/tools/Modules/Tests/RepoModuleTests.ps1 +++ b/tools/Modules/Tests/RepoModuleTests.ps1 @@ -15,7 +15,8 @@ Function Test-NewCredentialNewServicePrincipal Import-Module $PSScriptRoot\..\TestFx-Tasks.psd1 # Test that Service Principal is correctly created $context = Get-AzureRmContext - New-AzureCredential -NewServicePrincipalDisplayName "credentialtestserviceprincipal" -NewServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Record" -Force + $secureSecret = ConvertTo-SecureString -String "testpassword" -AsPlainText -Force + New-TestCredential -ServicePrincipalDisplayName "credentialtestserviceprincipal" -ServicePrincipalSecret $secureSecret -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Record" -Force $servicePrincipal = Get-AzureRmADServicePrincipal -SearchString credentialtestserviceprincipal | where { $_.DisplayName -eq "credentialtestserviceprincipal" } if ($servicePrincipal -eq $null) { @@ -31,7 +32,8 @@ Function Test-NewCredentialNewServicePrincipal "SubscriptionId=" + $context.Subscription.Id + ";HttpRecorderMode=Record;Environment=Prod;ServicePrincipal=" + $servicePrincipal.ApplicationId + ";ServicePrincipalSecret=testpassword;" + "AADTenant=" + $context.Tenant.Id)) { - throw "ConnectionString not set correctly" + throw "ConnectionString not set correctly: " + $Env:TEST_CSM_ORGID_AUTHENTICATION + ", expected: " + "SubscriptionId=" + $context.Subscription.Id + + ";HttpRecorderMode=Record;Environment=Prod;ServicePrincipal=" + $servicePrincipal.ApplicationId + ";ServicePrincipalSecret=testpassword;" + "AADTenant=" + $context.Tenant.Id } # Test that TestEnviroment is set-up properly @@ -83,7 +85,8 @@ Function Test-NewCredentialExistingServicePrincipal $Retries++; } - New-AzureCredential -ServicePrincipalId $NewServicePrincipal.ApplicationId -ServicePrincipalSecret "testpassword" -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force + $secureSecret = ConvertTo-SecureString -String "testpassword" -AsPlainText -Force + New-TestCredential -ServicePrincipalDisplayName "credentialtestserviceprincipal" -ServicePrincipalSecret $secureSecret -SubscriptionId $context.Subscription.Id -TenantId $context.Tenant.Id -RecordMode "Playback" -Force # Test that connection string is properly set $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" @@ -131,7 +134,7 @@ Function Test-NewCredentialExistingServicePrincipal Function Test-NewCredentialUserId { $context = Get-AzureRmContext - New-AzureCredential -UserId "testuser" -SubscriptionId $context.Subscription.Id -RecordMode "Playback" -Force + New-TestCredential -UserId "testuser" -SubscriptionId $context.Subscription.Id -RecordMode "Playback" -Force # Test that connection string is properly set $filePath = Join-Path -Path $PSScriptRoot -ChildPath "\..\..\..\src\ResourceManager\Common\Commands.ScenarioTests.ResourceManager.Common\bin\Debug\Microsoft.Azure.Commands.ScenarioTest.Common.dll" @@ -249,4 +252,10 @@ Function Test-SetEnvironmentUserId # Clean-up Remove-Item Env:AZURE_TEST_MODE Remove-Item Env:TEST_CSM_ORGID_AUTHENTICATION -} \ No newline at end of file +} + +Test-NewCredentialNewServicePrincipal +Test-NewCredentialExistingServicePrincipal +Test-NewCredentialUserId +Test-SetEnvironmentServicePrincipal +Test-SetEnvironmentUserId \ No newline at end of file From be2be63e6fd4b2b86fff2744775f269e93ba7a51 Mon Sep 17 00:00:00 2001 From: Stephen Griffiths Date: Mon, 13 Nov 2017 10:58:09 +0000 Subject: [PATCH 31/37] Remove extra Select-Object pipe in Example 4 --- .../Profile/Commands.Profile/help/Get-AzureRmSubscription.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md b/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md index 5344019e1d..c015093f8e 100644 --- a/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md +++ b/src/ResourceManager/Profile/Commands.Profile/help/Get-AzureRmSubscription.md @@ -82,7 +82,7 @@ authorized for the current user. ### Example 4: Change the current context to use a specific subscription ``` -PS C:\>Get-AzureRmSubscription -SubscriptionId "xxxx-xxxx-xxxx-xxxx" -TenantId "yyyy-yyyy-yyyy-yyyy" | Select @{n='SubscriptionId';e={$_.Id}} | Set-AzureRmContext +PS C:\>Get-AzureRmSubscription -SubscriptionId "xxxx-xxxx-xxxx-xxxx" -TenantId "yyyy-yyyy-yyyy-yyyy" | Set-AzureRmContext Environment : AzureCloud Account : user@example.com From a4eb4451f61b414c3c88dc3a6e316aa1bc69305c Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Mon, 13 Nov 2017 10:08:31 -0800 Subject: [PATCH 32/37] update the session records --- .../RaPropertiesValidation.json | 2866 +++++++++-------- 1 file changed, 1518 insertions(+), 1348 deletions(-) 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 d2e549196d..ca3cd02fe5 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 @@ -13,22 +13,22 @@ "462" ], "x-ms-client-request-id": [ - "823e5471-9987-4cfa-8578-55c8d866a865" + "021d7a3e-a3d1-4165-8a42-b911886ae058" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40,7 +40,7 @@ "no-cache" ], "x-ms-request-id": [ - "d3e7eb76-ab85-4512-8f30-7b0b69362f99" + "0132c1bd-10fd-434f-b3c6-18b04afdb6ff" ], "X-Content-Type-Options": [ "nosniff" @@ -52,16 +52,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a3c74c8a-ae9e-4e2e-be4a-98125271a363" + "54d4a96f-a3a3-4e7c-a23d-6e7443556c35" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200103Z:a3c74c8a-ae9e-4e2e-be4a-98125271a363" + "WESTUS2:20171113T180607Z:54d4a96f-a3a3-4e7c-a23d-6e7443556c35" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:02 GMT" + "Mon, 13 Nov 2017 18:06:07 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -82,22 +82,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd154772-918f-4bda-bce2-21cd4c332c7f" + "53f352fe-d87b-4e65-bba9-073f6701c82d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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.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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964B900000000000000000000'\"\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 \"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}", "ResponseHeaders": { "Content-Length": [ - "114106" + "114197" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -109,19 +109,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=" + "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" ], "request-id": [ - "4c5adc63-7aeb-4527-b139-75b54dc8c065" + "3140e757-8d48-4c56-9683-d062b946f0ee" ], "client-request-id": [ - "dc195f09-adc9-4c72-9846-5c73178aad33" + "2f7c42c3-6fa8-4e9c-82a8-7785c5b20b2a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "BKHM2sLLvXDgwdYDtlmcYINJQFuAkSOguT_NaCOTYpvLUkESs65WfjcnNEEhxo45U-QFa8sAQ5PHJlVgBbfd0qXYmsGUXImIjv6vuWYI9o5yLFtJ_RHmxggQBGbjTtHg.4s27pwnwuoiEU6xa8Gmm94e5X2F01S75nHEVJy-svrI" + "YWshydGxkWaGZCcaeF6m4iuoop-OculixDMGMRFvXZn44vzNwwL_YDQ3M42k6YNxWvXW0a8AP8SQB00lfQ8fdyaj4h6sKIFV3JZTiegXejxElbjXvTvKYEs8teabeDbG.9ZHFOjCT6ZocwTHnhNAh2nFe5bTn2oTb7OHkBuCuRY4" ], "X-Content-Type-Options": [ "nosniff" @@ -136,7 +136,7 @@ "*" ], "Duration": [ - "2609437" + "2175723" ], "Cache-Control": [ "no-cache" @@ -152,34 +152,34 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:02 GMT" + "Mon, 13 Nov 2017 18:06:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAxMDAwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzMTM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTM0NjIzMTYxMzkzODM0MkQ2MzMxMzkzMDJEMzQzNjYyMzUyRDM4MzY2MzY1MkQ2NTMyNjM2NTMyNjYzOTM1MzIzODM5NjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "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": [ - "c5eb712e-8ac4-4476-9f35-d6a7d235ace4" + "50d9e516-ab1d-4d3f-bc96-7d6e034cd491" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63656561656232302D373062302D346637632D383063362D666531323166623163363230004A3A74657374557365723033393164663236632D393636372D343064382D616635382D3034656232366665366432394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61623131303465342D636338632D346134382D626434372D336366633336363339393334B900000000000000000000'\"\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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723033326234636631662D303861632D343439342D623966372D3163663866316466323333334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33613834373463312D313264352D346437642D623066342D353033336433623337356635B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "120072" + "119848" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -191,19 +191,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kpTVY9vhytH2Y1JxyUkph+h7pjb7c5rbFUPU3WdgiQ0=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "33007d5f-6a2b-4b67-9504-6b87b6c16ae1" + "e0795c06-61aa-43c5-ae2c-a5e77647a1b2" ], "client-request-id": [ - "a795dad5-24f1-437e-bb89-f2687b9050e9" + "e22b2d44-118b-4e43-b123-8d71f7296127" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "jYW8p18-7_s_De3NwPsPkJUptkjLjGJS73hGN8OCaIyCiBdZyA4tDz6lJCm5EhOoCmEMK6xRk0wFQmEPtqNUjfvct62C-U4ZXrGMkN_l4IZfZsijtqUGjARK-ot5EfBl.cXK-bmXi9HfDxz1QXdH77JbrmWM0CzUabtrTeWqYye4" + "xYMpO7IfG_WGN47vGp-JdYQSM6GO87toE5JhW-6Mi2vS3qUxuB-xp9ualSfaGy6r56EkAoTR5skghmUeeepjYbUYOJYX1yrg3kA-hRYEC6rUrLjb4uJjB2Wu49vxRLq3.esqd8AA3c_zw9dgAjLeTutbC9NrJutBab3AWi7Sx5qE" ], "X-Content-Type-Options": [ "nosniff" @@ -218,7 +218,7 @@ "*" ], "Duration": [ - "1251705" + "6111625" ], "Cache-Control": [ "no-cache" @@ -234,34 +234,34 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:02 GMT" + "Mon, 13 Nov 2017 18:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63656561656232302D373062302D346637632D383063362D666531323166623163363230004A3A74657374557365723033393164663236632D393636372D343064382D616635382D3034656232366665366432394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61623131303465342D636338632D346134382D626434372D336366633336363339393334B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzOTMyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MzY1NjU2MTY1NjIzMjMwMkQzNzMwNjIzMDJEMzQ2NjM3NjMyRDM4MzA2MzM2MkQ2NjY1MzEzMjMxNjY2MjMxNjMzNjMyMzAwMDRBM0E3NDY1NzM3NDU1NzM2NTcyMzAzMzM5MzE2NDY2MzIzNjYzMkQzOTM2MzYzNzJEMzQzMDY0MzgyRDYxNjYzNTM4MkQzMDM0NjU2MjMyMzY2NjY1MzY2NDMyMzk0MDcyNjI2MTYzNDM2QzY5NTQ2NTczNzQyRTZGNkU2RDY5NjM3MjZGNzM2RjY2NzQyRTYzNkY2RDI5NTU3MzY1NzI1RjYxNjIzMTMxMzAzNDY1MzQyRDYzNjMzODYzMkQzNDYxMzQzODJENjI2NDM0MzcyRDMzNjM2NjYzMzMzNjM2MzMzOTM5MzMzNEI5MDAwMDAwMDAwMDAwMDAwMDAwMDAnJmFwaS12ZXJzaW9uPTEuNg==", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723033326234636631662D303861632D343439342D623966372D3163663866316466323333334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33613834373463312D313264352D346437642D623066342D353033336433623337356635B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzMTM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTM0NjIzMTYxMzkzODM0MkQ2MzMxMzkzMDJEMzQzNjYyMzUyRDM4MzY2MzY1MkQ2NTMyNjM2NTMyNjYzOTM1MzIzODM5NjQwMDRBM0E3NDY1NzM3NDU1NzM2NTcyMzAzMzMyNjIzNDYzNjYzMTY2MkQzMDM4NjE2MzJEMzQzNDM5MzQyRDYyMzk2NjM3MkQzMTYzNjYzODY2MzE2NDY2MzIzMzMzMzM0MDcyNjI2MTYzNDM2QzY5NTQ2NTczNzQyRTZGNkU2RDY5NjM3MjZGNzM2RjY2NzQyRTYzNkY2RDI5NTU3MzY1NzI1RjMzNjEzODM0MzczNDYzMzEyRDMxMzI2NDM1MkQzNDY0Mzc2NDJENjIzMDY2MzQyRDM1MzAzMzMzNjQzMzYyMzMzNzM1NjYzNUI5MDAwMDAwMDAwMDAwMDAwMDAwMDAnJmFwaS12ZXJzaW9uPTEuNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1d041a7-7525-4c81-a5f5-d4f3774b3d87" + "5b711d82-4a0e-4b2d-9dc9-6f1d59b92dac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033613466663566302D666465302D346636612D393165382D3135636539613039356431394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32363235366331312D643865642D343534662D393539362D633962383133373133613164004A3A74657374557365723063333464633431662D376339642D346531662D393161622D3261336332323266616563304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37623836616637382D356666392D346132372D383832322D663336316436306239656334B900000000000000000000'\"\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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033333734663930372D376463622D343938622D383939362D6661656563653765346639624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31306262636130372D653662392D343964312D616431632D313832633263323239343138004A3A74657374557365723061663537626663642D653465662D343933332D383030612D3865666339333037396462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30373930633435642D643830352D343662312D616334312D323139613266643038393735B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124697" + "124705" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -273,19 +273,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "1dc2b08e-f696-4acf-b055-da3737b36a99" + "d812549f-b273-40e7-b8de-f9f7053e6339" ], "client-request-id": [ - "65a2ba44-3f4c-41b3-bebc-a0f7ae42f6ef" + "abf18810-30e7-4c76-b5da-1f682c36a3b9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "bsHcySWrM2jMSoLrq_JaeVJbkFKDdViw0qGLeCxMIlJoAJdT8QE7rCKwAGGSYh9JQ0PWou49aVR53I1tQPijcbob-iX5wE2H6jLqxB9-JA3KEXbjJKgfvg13L3tpzPgt.dKD5bOKcRe1Ng9UZ6vkQ_yQ2rGEPfQqJXUDCJVqAb_s" + "3CjFljJLblfz7tC0k1yAkZhDMh4Q4rl4MUr_AQXThKFK-Y8Z4FBlJfBO0DkO3dkq5AjLjhgbwBLp5afHjn-XrFBKfyGhxKURp64l5Cnee4F8nqDK1qq9xyAdXAPkpyRO.ckKCQRls639QTINssLGwTeDAp0SEzpWCpqIJHzAst00" ], "X-Content-Type-Options": [ "nosniff" @@ -300,7 +300,7 @@ "*" ], "Duration": [ - "1497649" + "1375950" ], "Cache-Control": [ "no-cache" @@ -316,769 +316,31 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:02 GMT" + "Mon, 13 Nov 2017 18:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033613466663566302D666465302D346636612D393165382D3135636539613039356431394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32363235366331312D643865642D343534662D393539362D633962383133373133613164004A3A74657374557365723063333464633431662D376339642D346531662D393161622D3261336332323266616563304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37623836616637382D356666392D346132372D383832322D663336316436306239656334B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDMzNjEzNDY2NjYzNTY2MzAyRDY2NjQ2NTMwMkQzNDY2MzY2MTJEMzkzMTY1MzgyRDMxMzU2MzY1Mzk2MTMwMzkzNTY0MzEzOTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzIzNjMyMzUzNjYzMzEzMTJENjQzODY1NjQyRDM0MzUzNDY2MkQzOTM1MzkzNjJENjMzOTYyMzgzMTMzMzczMTMzNjEzMTY0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMwNjMzMzM0NjQ2MzM0MzE2NjJEMzc2MzM5NjQyRDM0NjUzMTY2MkQzOTMxNjE2MjJEMzI2MTMzNjMzMjMyMzI2NjYxNjU2MzMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNzYyMzgzNjYxNjYzNzM4MkQzNTY2NjYzOTJEMzQ2MTMyMzcyRDM4MzgzMjMyMkQ2NjMzMzYzMTY0MzYzMDYyMzk2NTYzMzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723033333734663930372D376463622D343938622D383939362D6661656563653765346639624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31306262636130372D653662392D343964312D616431632D313832633263323239343138004A3A74657374557365723061663537626663642D653465662D343933332D383030612D3865666339333037396462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30373930633435642D643830352D343662312D616334312D323139613266643038393735B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDMzMzMzNzM0NjYzOTMwMzcyRDM3NjQ2MzYyMkQzNDM5Mzg2MjJEMzgzOTM5MzYyRDY2NjE2NTY1NjM2NTM3NjUzNDY2Mzk2MjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzEzMDYyNjI2MzYxMzAzNzJENjUzNjYyMzkyRDM0Mzk2NDMxMkQ2MTY0MzE2MzJEMzEzODMyNjMzMjYzMzIzMjM5MzQzMTM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMwNjE2NjM1Mzc2MjY2NjM2NDJENjUzNDY1NjYyRDM0MzkzMzMzMkQzODMwMzA2MTJEMzg2NTY2NjMzOTMzMzAzNzM5NjQ2MjMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDM3MzkzMDYzMzQzNTY0MkQ2NDM4MzAzNTJEMzQzNjYyMzEyRDYxNjMzNDMxMkQzMjMxMzk2MTMyNjY2NDMwMzgzOTM3MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "569f5c09-a2cd-47ff-b63b-4f5235b59a14" + "34d84046-9c95-40f6-b286-c96c30e3ec4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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.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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723063363664336336632D643332312D346361392D613536312D6130643664613031636164334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62303439363866342D643135652D343833642D396135612D303237656138653830373637004A3A74657374557365723135333435386366652D633835372D343665312D393465342D3332386266386131626438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30386236613036392D646561352D343630652D393538662D393165343330313831643935B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124565" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" - ], - "request-id": [ - "632dc227-dd96-4e63-ac5a-d431c895207b" - ], - "client-request-id": [ - "135593ef-b778-4d65-bd08-7cbdecca3190" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "Xqqo5yO3pnD18yWgWtJJXGzaWQAzLCpPhDCutOTu4ZQAnGHaP6Koz2pP1o5rb1S1S9TryOImnPVER0Mjf2cyBlmTN8WcU1hBVSNAuXDBETBrx0PTM8cHOsbaq-gC1JhZ.jwYxkPKscad6BDmF9JSju6KaQZjVqqGsz4DtYxt5AF4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1155626" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723063363664336336632D643332312D346361392D613536312D6130643664613031636164334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62303439363866342D643135652D343833642D396135612D303237656138653830373637004A3A74657374557365723135333435386366652D633835372D343665312D393465342D3332386266386131626438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30386236613036392D646561352D343630652D393538662D393165343330313831643935B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDYzMzYzNjY0MzM2MzM2NjMyRDY0MzMzMjMxMkQzNDYzNjEzOTJENjEzNTM2MzEyRDYxMzA2NDM2NjQ2MTMwMzE2MzYxNjQzMzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjIzMDM0MzkzNjM4NjYzNDJENjQzMTM1NjUyRDM0MzgzMzY0MkQzOTYxMzU2MTJEMzAzMjM3NjU2MTM4NjUzODMwMzczNjM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxMzUzMzM0MzUzODYzNjY2NTJENjMzODM1MzcyRDM0MzY2NTMxMkQzOTM0NjUzNDJEMzMzMjM4NjI2NjM4NjEzMTYyNjQzODM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDM4NjIzNjYxMzAzNjM5MkQ2NDY1NjEzNTJEMzQzNjMwNjUyRDM5MzUzODY2MkQzOTMxNjUzNDMzMzAzMTM4MzE2NDM5MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38de34dc-f558-4684-888a-4f1f0e5065ce" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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.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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723135333439346532392D373431392D343833362D393838342D3638396464646265663132314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62646138613536382D633338382D346665352D626139392D373533636236653765613239004A3A74657374557365723165306536616461302D633532612D343466642D613932322D3162353666363739623939344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33643537636132622D326133612D343035352D393861372D303463363439346561656364B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124669" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" - ], - "request-id": [ - "21c847ad-22c0-407f-8e00-f25902192b1b" - ], - "client-request-id": [ - "8bac0e78-3975-4696-8fca-a7d66e279065" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "0omeYp7a_cZO0sP4_QxNjK9tuRzSNCGA2IT5BWidAnMCjGN6LZx8BY1JS29P957qoA2umopmG38qR1slW8Nqly9_bjFCEmeYzD0mXCOG6sQiJGoV22yOK0dM1chsD3IF.a1yxuTvOGGHq9QnE5btXUcNtg8jqq1XtEKThIFkhn1Q" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1330767" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723135333439346532392D373431392D343833362D393838342D3638396464646265663132314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62646138613536382D633338382D346665352D626139392D373533636236653765613239004A3A74657374557365723165306536616461302D633532612D343466642D613932322D3162353666363739623939344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33643537636132622D326133612D343035352D393861372D303463363439346561656364B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTM1MzMzNDM5MzQ2NTMyMzkyRDM3MzQzMTM5MkQzNDM4MzMzNjJEMzkzODM4MzQyRDM2MzgzOTY0NjQ2NDYyNjU2NjMxMzIzMTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2NDYxMzg2MTM1MzYzODJENjMzMzM4MzgyRDM0NjY2NTM1MkQ2MjYxMzkzOTJEMzczNTMzNjM2MjM2NjUzNzY1NjEzMjM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxNjUzMDY1MzY2MTY0NjEzMDJENjMzNTMyNjEyRDM0MzQ2NjY0MkQ2MTM5MzIzMjJEMzE2MjM1MzY2NjM2MzczOTYyMzkzOTM0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzY0MzUzNzYzNjEzMjYyMkQzMjYxMzM2MTJEMzQzMDM1MzUyRDM5Mzg2MTM3MkQzMDM0NjMzNjM0MzkzNDY1NjE2NTYzNjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdadd4a2-6dc9-446f-9224-fa75c4aea9b2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723165323531303033662D343038322D346236332D623438332D3538346365316163313834634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37383138356534652D303336352D343766392D383837632D353838393735343831663438004A3A74657374557365723235623561373362652D383263322D343933312D613361382D6634313436303061656336314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64333730393130302D656165632D343864382D383166372D633034643230393337643261B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124577" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" - ], - "request-id": [ - "e20e18ba-dfc0-42ce-abc4-a6bcfac3417f" - ], - "client-request-id": [ - "87d63501-fd6b-4f42-9935-b48499035908" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "3bRFs_QLCjTF_1sUR2i_4603Wk_9WKLqZbcPW14G9bnrq4De2ayTE55CaVeMLXGamAZ1oL5h992TpfhUNN5_DeySU-Cqtiqs8uFh7bbGIO55DuJZF2_6DfJO4DTpRu8I.12Yt5S4rFNC4j6y0CWENCtV6di_8PLVjWPyqPWS6Yzc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1132372" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723165323531303033662D343038322D346236332D623438332D3538346365316163313834634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37383138356534652D303336352D343766392D383837632D353838393735343831663438004A3A74657374557365723235623561373362652D383263322D343933312D613361382D6634313436303061656336314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64333730393130302D656165632D343864382D383166372D633034643230393337643261B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTY1MzIzNTMxMzAzMDMzNjYyRDM0MzAzODMyMkQzNDYyMzYzMzJENjIzNDM4MzMyRDM1MzgzNDYzNjUzMTYxNjMzMTM4MzQ2MzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczODMxMzgzNTY1MzQ2NTJEMzAzMzM2MzUyRDM0Mzc2NjM5MkQzODM4Mzc2MzJEMzUzODM4MzkzNzM1MzQzODMxNjYzNDM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyMzU2MjM1NjEzNzMzNjI2NTJEMzgzMjYzMzIyRDM0MzkzMzMxMkQ2MTMzNjEzODJENjYzNDMxMzQzNjMwMzA2MTY1NjMzNjMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NDMzMzczMDM5MzEzMDMwMkQ2NTYxNjU2MzJEMzQzODY0MzgyRDM4MzE2NjM3MkQ2MzMwMzQ2NDMyMzAzOTMzMzc2NDMyNjFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0673b164-c8de-4794-b524-06e75c86c59b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723235643837643665372D393731342D346134622D616161372D3936343139626264646264374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37356361666462342D643839382D346563622D396639632D33663462333266336163613600263A7465737455736572334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31306466323361372D666539392D343164352D613732652D393232626435633530316362B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124517" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" - ], - "request-id": [ - "1a5c77cb-7ced-4ea2-819c-e6fc9068fbeb" - ], - "client-request-id": [ - "3707a9e5-acc8-413c-8f2f-7ab1f1f5d867" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "cbfZCuFJ7zuAmt81GhNBl0sySie82Aev_sTyqITDRfkm4ng4KqRd7pw6Mcucg9E0AWRV88HA1pECnwgVkfCNeTy-jMcQlUX2950J2U43xpzLuliUrqn5oDGHDqBTgzNU.7jDFsWfnssy2aUOaJGBIZK2wZDz6nIsyfAG7orr1Nhg" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1122259" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723235643837643665372D393731342D346134622D616161372D3936343139626264646264374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37356361666462342D643839382D346563622D396639632D33663462333266336163613600263A7465737455736572334072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31306466323361372D666539392D343164352D613732652D393232626435633530316362B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjM1NjQzODM3NjQzNjY1MzcyRDM5MzczMTM0MkQzNDYxMzQ2MjJENjE2MTYxMzcyRDM5MzYzNDMxMzk2MjYyNjQ2NDYyNjQzNzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNTYzNjE2NjY0NjIzNDJENjQzODM5MzgyRDM0NjU2MzYyMkQzOTY2Mzk2MzJEMzM2NjM0NjIzMzMyNjYzMzYxNjM2MTM2MDAyNjNBNzQ2NTczNzQ1NTczNjU3MjMzNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTMwNjQ2NjMyMzM2MTM3MkQ2NjY1MzkzOTJEMzQzMTY0MzUyRDYxMzczMjY1MkQzOTMyMzI2MjY0MzU2MzM1MzAzMTYzNjJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7dc6bc2d-4239-4fe3-bcd1-2f30bf1cfe86" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723330306332613062362D626430392D343664642D383534632D3039666536303766333061394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33356264613462392D316635652D343036622D626439622D373130396563323930386661004A3A74657374557365723336653937653566652D393235622D346230352D393939312D3138643562656132303863664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65646264646463652D383132632D343265342D613665612D323737366231346232643565B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124689" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" - ], - "request-id": [ - "e588c8bb-024c-4424-9063-48d2e5c7350b" - ], - "client-request-id": [ - "c5c56830-499e-41e8-a149-f44b05c6f638" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "f0K7z0yYXb6fqP3Wn-ziWcUf75cCWS_aCplY4RJm5i-_Mj7D4Wucw2jd1VERYkhgZcN9NbrFGvwxsPcVkommyzV5e0AxOo3cD7eNh-J8hBsqaJJJDT1n5v3f1rcj85-K.4MuT1QG8M4wEs9idWVnJWWX21dBBpIYj-m64E8wygKY" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1226901" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723330306332613062362D626430392D343664642D383534632D3039666536303766333061394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33356264613462392D316635652D343036622D626439622D373130396563323930386661004A3A74657374557365723336653937653566652D393235622D346230352D393939312D3138643562656132303863664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65646264646463652D383132632D343265342D613665612D323737366231346232643565B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzMwMzA2MzMyNjEzMDYyMzYyRDYyNjQzMDM5MkQzNDM2NjQ2NDJEMzgzNTM0NjMyRDMwMzk2NjY1MzYzMDM3NjYzMzMwNjEzOTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzMzNTYyNjQ2MTM0NjIzOTJEMzE2NjM1NjUyRDM0MzAzNjYyMkQ2MjY0Mzk2MjJEMzczMTMwMzk2NTYzMzIzOTMwMzg2NjYxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzMzY2NTM5Mzc2NTM1NjY2NTJEMzkzMjM1NjIyRDM0NjIzMDM1MkQzOTM5MzkzMTJEMzEzODY0MzU2MjY1NjEzMjMwMzg2MzY2NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTY0NjI2NDY0NjQ2MzY1MkQzODMxMzI2MzJEMzQzMjY1MzQyRDYxMzY2NTYxMkQzMjM3MzczNjYyMzEzNDYyMzI2NDM1NjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d71c4e4d-cba0-4afc-a54a-b75665b1393f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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 \"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\": \"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 \"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\": \"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 \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337303538653561632D643135332D343439662D393866612D3763643266373230633363644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62656263356330312D333064372D343365332D623562392D626135373937366437393833004A3A74657374557365723431663035353662332D653337302D346262302D623432662D3834353839633736636632634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32303832326432642D626262642D346231342D626339332D353538316561356235353435B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124577" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" - ], - "request-id": [ - "048cf49b-751e-4c32-bf7d-7ca6023dab85" - ], - "client-request-id": [ - "4bf5aeba-5a88-4b97-8ec8-629c5faf1d87" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "Lcem0WncTobC7KoMb9QKJ0iIPkC5a5Orme-t2S0Kn5cq-dOk_LM6dVEhsTztOTvhHkP2HJkD2mEegHt9bF8UrTe5Ki7KkN8WWLO87OOgtNjoNZqChVPW7KcX_Iiz-1Cc.h8qSfmHd_myVFKv6Bq60Xc8pF-t8bAip4V9NiOu6XMA" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1934708" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337303538653561632D643135332D343439662D393866612D3763643266373230633363644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62656263356330312D333064372D343365332D623562392D626135373937366437393833004A3A74657374557365723431663035353662332D653337302D346262302D623432662D3834353839633736636632634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32303832326432642D626262642D346231342D626339332D353538316561356235353435B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzM3MzAzNTM4NjUzNTYxNjMyRDY0MzEzNTMzMkQzNDM0Mzk2NjJEMzkzODY2NjEyRDM3NjM2NDMyNjYzNzMyMzA2MzMzNjM2NDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2NTYyNjMzNTYzMzAzMTJEMzMzMDY0MzcyRDM0MzM2NTMzMkQ2MjM1NjIzOTJENjI2MTM1MzczOTM3MzY2NDM3MzkzODMzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0MzE2NjMwMzUzNTM2NjIzMzJENjUzMzM3MzAyRDM0NjI2MjMwMkQ2MjM0MzI2NjJEMzgzNDM1MzgzOTYzMzczNjYzNjYzMjYzNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjMwMzgzMjMyNjQzMjY0MkQ2MjYyNjI2NDJEMzQ2MjMxMzQyRDYyNjMzOTMzMkQzNTM1MzgzMTY1NjEzNTYyMzUzNTM0MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c882fa94-4f04-41a3-be7f-a7d4da91ad63" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723432303664353138322D626534662D343465392D393737612D6638663062393466383030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39343836343864632D356462302D343239632D613238372D366165333462346165376462004A3A74657374557365723461663638373535312D396266652D343734662D396331352D6538643337316561353632644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34656439613362332D343736362D346661652D616664612D366437383062616134343930B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124689" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "gkzsLeMnNX5MBrbEJaZ8vPZibER/4Ly6FEdhXhYlNVM=" - ], - "request-id": [ - "bde64455-9ff2-48c1-a80f-9d315ef8cde6" - ], - "client-request-id": [ - "4adbfb83-f4f2-4a63-8faa-84f9bdd40cb2" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "jw5hWMgAXsqJpOSam-FvcUU6QH_toW-RL84vaURcpKgQ2WQiGCmQ4BDIxfu2Gu1LDkTbAioRTtqOM-6kIptLrUd1du7yyUZOfnWCN5KrxYHz-_CAnpiKFSJ9txqR_ixF.xl1H9zeKeRRJ9BdanBFOX8q2UYNKyzdC8RDu9yKnT7Q" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1604192" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723432303664353138322D626534662D343465392D393737612D6638663062393466383030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39343836343864632D356462302D343239632D613238372D366165333462346165376462004A3A74657374557365723461663638373535312D396266652D343734662D396331352D6538643337316561353632644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34656439613362332D343736362D346661652D616664612D366437383062616134343930B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDMyMzAzNjY0MzUzMTM4MzIyRDYyNjUzNDY2MkQzNDM0NjUzOTJEMzkzNzM3NjEyRDY2Mzg2NjMwNjIzOTM0NjYzODMwMzAzMDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzkzNDM4MzYzNDM4NjQ2MzJEMzU2NDYyMzAyRDM0MzIzOTYzMkQ2MTMyMzgzNzJEMzY2MTY1MzMzNDYyMzQ2MTY1Mzc2NDYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0NjE2NjM2MzgzNzM1MzUzMTJEMzk2MjY2NjUyRDM0MzczNDY2MkQzOTYzMzEzNTJENjUzODY0MzMzNzMxNjU2MTM1MzYzMjY0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDY1NjQzOTYxMzM2MjMzMkQzNDM3MzYzNjJEMzQ2NjYxNjUyRDYxNjY2NDYxMkQzNjY0MzczODMwNjI2MTYxMzQzNDM5MzBCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6be07004-d5c2-45d3-b379-1e62048bcbe8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323633366266372D323964622D346439332D383738662D3430626634666165306231634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66333830343763612D376633342D343563362D383531322D653331363235663737616538004A3A74657374557365723533373162393262652D613534362D343762632D616165322D3739323764383837316633354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653731313933362D646366652D343537342D623330342D313763663362376435666364B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124577" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" - ], - "request-id": [ - "3870e6a6-630f-4332-9338-6961ae5e5dd3" - ], - "client-request-id": [ - "a24f0050-57f8-4f64-9410-6bfbd58c3a60" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "42jvi4GAJXx5BOKwuIDf2kHdYeJRhm867v8C7yS3ShFzSWXrlr71dJX4icgLZB0EZMc6_kQiTtpkLXOERrAPf-S4x7qexchMtLwD6v3qTv5vIvYHipIZjLxt_557vOLt.cMEoO8ztL8PXimslIOZHmkoLrgsz6yFLSKXaruK5HZE" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "2480035" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323633366266372D323964622D346439332D383738662D3430626634666165306231634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66333830343763612D376633342D343563362D383531322D653331363235663737616538004A3A74657374557365723533373162393262652D613534362D343762632D616165322D3739323764383837316633354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653731313933362D646366652D343537342D623330342D313763663362376435666364B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDYyMzIzNjMzMzY2MjY2MzcyRDMyMzk2NDYyMkQzNDY0MzkzMzJEMzgzNzM4NjYyRDM0MzA2MjY2MzQ2NjYxNjUzMDYyMzE2MzQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjYzMzM4MzAzNDM3NjM2MTJEMzc2NjMzMzQyRDM0MzU2MzM2MkQzODM1MzEzMjJENjUzMzMxMzYzMjM1NjYzNzM3NjE2NTM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1MzMzNzMxNjIzOTMyNjI2NTJENjEzNTM0MzYyRDM0Mzc2MjYzMkQ2MTYxNjUzMjJEMzczOTMyMzc2NDM4MzgzNzMxNjYzMzM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODY1MzczMTMxMzkzMzM2MkQ2NDYzNjY2NTJEMzQzNTM3MzQyRDYyMzMzMDM0MkQzMTM3NjM2NjMzNjIzNzY0MzU2NjYzNjRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c282167-06b2-4ed1-8407-c4cffe610ebe" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723533383862306638352D626166382D343433322D396437662D6636396464353731333032384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37626338333035612D666662652D343132392D386539352D376266336439663033396338004A3A74657374557365723563313836353239382D313839662D343337652D383234332D3339316463396564326163314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66386263666165302D643930312D343431372D393735662D356465323339373536363838B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124697" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" - ], - "request-id": [ - "8bfab0a4-3eff-480e-ada1-7dc15e846b64" - ], - "client-request-id": [ - "0216a37e-fb81-4812-8f77-92ab7007454d" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "t_mfXEFTBvt7_vj1j4jWkKvkMk3SooK70UBfbe8trn1N9eeMJlJ15SonuFrA0wbPqKqDvbQsNQltMqPaXef65u6E2-h-TIRJIEKJHBxDunNYX29LUcZE4PRRiAaZQ-Rw.D6uo-AXM_FAgcHwabpuGDLoQ19SlGJv9vLSV-ev3tMk" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "1289848" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723533383862306638352D626166382D343433322D396437662D6636396464353731333032384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37626338333035612D666662652D343132392D386539352D376266336439663033396338004A3A74657374557365723563313836353239382D313839662D343337652D383234332D3339316463396564326163314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66386263666165302D643930312D343431372D393735662D356465323339373536363838B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTMzMzgzODYyMzA2NjM4MzUyRDYyNjE2NjM4MkQzNDM0MzMzMjJEMzk2NDM3NjYyRDY2MzYzOTY0NjQzNTM3MzEzMzMwMzIzODQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzc2MjYzMzgzMzMwMzU2MTJENjY2NjYyNjUyRDM0MzEzMjM5MkQzODY1MzkzNTJEMzc2MjY2MzM2NDM5NjYzMDMzMzk2MzM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1NjMzMTM4MzYzNTMyMzkzODJEMzEzODM5NjYyRDM0MzMzNzY1MkQzODMyMzQzMzJEMzMzOTMxNjQ2MzM5NjU2NDMyNjE2MzMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NjM4NjI2MzY2NjE2NTMwMkQ2NDM5MzAzMTJEMzQzNDMxMzcyRDM5MzczNTY2MkQzNTY0NjUzMjMzMzkzNzM1MzYzNjM4MzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3e6d2ef-2649-4750-867f-b72868a995da" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563326632306435352D353330382D346663322D616139392D3034653961646235393862614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65353631333861392D363830642D343138392D396661322D663134306438333139613639004A3A74657374557365723635323637386536632D316230372D343864382D393839332D3963343238393762393434354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30656362623861302D376563632D343534662D383137382D393633626265656235336534B900000000000000000000'\"\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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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.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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723062336436623433652D343132382D343866652D386136352D3537336131396230336539344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36393735393234352D353437362D343333372D383135392D616438656636393839353035004A3A74657374557365723134306537656336352D336431662D343537332D393636352D6632333733303261333936664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32326430613938322D633935332D346262342D613131392D633634346439336630316565B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ "124569" @@ -1093,19 +355,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "801805ec-73cf-478b-a3cd-2d6aa0a65b38" + "37fb2a20-adee-4385-bee8-fe9002ab979e" ], "client-request-id": [ - "b938c278-1559-4255-9474-e0d164682429" + "34b8de47-e272-43b2-aeb0-198427e3235c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ppCpKIZ3gf8Y_m02mi-BjbCHJwJmuCtcVYUUXqcxxoOZJNykRP5X7Irahz-ucXWNxSqLPZ1mILh1Pt20mWhjAZp4Sa3skC3klOrLu0aZGhtQ_pmruGEo_gDIj9xsv4fB.OkfKTQHWr6r5XAMhXtycnKpvhuoVDtWWFUUkuEvuLoQ" + "2Ert0z8RpmZza7z0v9EoW1j-TRoBc3mJbO8qXujOym-iW7WFLML4LTFKYFYwrwy-JesAsB094Adb5fv6c1An2yGqIIg5u5OY0sr75LYYRy1VWO3mv29VxyG7DxOuB9_Q.1VL9vClHBDWW3cJI4sj3NCn-fLh2Stdm4G8itjfDkpM" ], "X-Content-Type-Options": [ "nosniff" @@ -1120,7 +382,7 @@ "*" ], "Duration": [ - "2258892" + "2036237" ], "Cache-Control": [ "no-cache" @@ -1136,31 +398,359 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:05 GMT" + "Mon, 13 Nov 2017 18:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563326632306435352D353330382D346663322D616139392D3034653961646235393862614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65353631333861392D363830642D343138392D396661322D663134306438333139613639004A3A74657374557365723635323637386536632D316230372D343864382D393839332D3963343238393762393434354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30656362623861302D376563632D343534662D383137382D393633626265656235336534B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTYzMzI2NjMyMzA2NDM1MzUyRDM1MzMzMDM4MkQzNDY2NjMzMjJENjE2MTM5MzkyRDMwMzQ2NTM5NjE2NDYyMzUzOTM4NjI2MTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjUzNTM2MzEzMzM4NjEzOTJEMzYzODMwNjQyRDM0MzEzODM5MkQzOTY2NjEzMjJENjYzMTM0MzA2NDM4MzMzMTM5NjEzNjM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzUzMjM2MzczODY1MzY2MzJEMzE2MjMwMzcyRDM0Mzg2NDM4MkQzOTM4MzkzMzJEMzk2MzM0MzIzODM5Mzc2MjM5MzQzNDM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDY1NjM2MjYyMzg2MTMwMkQzNzY1NjM2MzJEMzQzNTM0NjYyRDM4MzEzNzM4MkQzOTM2MzM2MjYyNjU2NTYyMzUzMzY1MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723062336436623433652D343132382D343866652D386136352D3537336131396230336539344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36393735393234352D353437362D343333372D383135392D616438656636393839353035004A3A74657374557365723134306537656336352D336431662D343537332D393636352D6632333733303261333936664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32326430613938322D633935332D346262342D613131392D633634346439336630316565B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDYyMzM2NDM2NjIzNDMzNjUyRDM0MzEzMjM4MkQzNDM4NjY2NTJEMzg2MTM2MzUyRDM1MzczMzYxMzEzOTYyMzAzMzY1MzkzNDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzYzOTM3MzUzOTMyMzQzNTJEMzUzNDM3MzYyRDM0MzMzMzM3MkQzODMxMzUzOTJENjE2NDM4NjU2NjM2MzkzODM5MzUzMDM1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxMzQzMDY1Mzc2NTYzMzYzNTJEMzM2NDMxNjYyRDM0MzUzNzMzMkQzOTM2MzYzNTJENjYzMjMzMzczMzMwMzI2MTMzMzkzNjY2NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjMyNjQzMDYxMzkzODMyMkQ2MzM5MzUzMzJEMzQ2MjYyMzQyRDYxMzEzMTM5MkQ2MzM2MzQzNDY0MzkzMzY2MzAzMTY1NjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cba486f2-9172-45e0-b4d5-8836e33a03ba" + "6764c37d-989a-4154-bca4-cbea50731f1a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723635333235633830622D313135662D343934612D613064342D3538326362326632646563644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32623237623237652D653961392D346336352D393633372D633765333662323935393535004A3A74657374557365723665366430636237312D333162652D346364662D386337622D3763356338326237386236374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38623735613138612D633739332D343665352D396631392D363433376334323564383165B900000000000000000000'\"\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\": \"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 \"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 \"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 \"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 \"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 \"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.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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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.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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723134316531646137662D656665642D343464622D623638352D3261383137663164306437654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37326432663739392D386236392D346361362D613662322D303035636432313562633530004A3A74657374557365723163623330383366352D313835662D343833632D613366652D3462396530303035663233394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653430633034362D386236312D346233662D383735392D393462653164343636313130B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124681" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + ], + "request-id": [ + "8320a265-e36d-4fc9-bde3-1ef4ddc7b998" + ], + "client-request-id": [ + "f832e8f3-291a-47ce-be9c-37eeb26c4281" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "X8y6B_Y-QABTUWOakz5KNsauA5WVCsdh0H3bg5PD2rau021YCfNYCHezL56mct6DiX1X0ODi5xUWyI5YeNPQTP3-kAlGeX2vV1Inec78I4PKJy5psbBybgfArpcFDx8Q.h8aanlIPKDyLRM2ZK1iNuBq-jKThhWMB00SZtAYcJmA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1280802" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723134316531646137662D656665642D343464622D623638352D3261383137663164306437654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37326432663739392D386236392D346361362D613662322D303035636432313562633530004A3A74657374557365723163623330383366352D313835662D343833632D613366652D3462396530303035663233394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38653430633034362D386236312D346233662D383735392D393462653164343636313130B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTM0MzE2NTMxNjQ2MTM3NjYyRDY1NjY2NTY0MkQzNDM0NjQ2MjJENjIzNjM4MzUyRDMyNjEzODMxMzc2NjMxNjQzMDY0Mzc2NTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczMjY0MzI2NjM3MzkzOTJEMzg2MjM2MzkyRDM0NjM2MTM2MkQ2MTM2NjIzMjJEMzAzMDM1NjM2NDMyMzEzNTYyNjMzNTMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxNjM2MjMzMzAzODMzNjYzNTJEMzEzODM1NjYyRDM0MzgzMzYzMkQ2MTMzNjY2NTJEMzQ2MjM5NjUzMDMwMzAzNTY2MzIzMzM5NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODY1MzQzMDYzMzAzNDM2MkQzODYyMzYzMTJEMzQ2MjMzNjYyRDM4MzczNTM5MkQzOTM0NjI2NTMxNjQzNDM2MzYzMTMxMzBCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a560980-5dcc-43be-bb7c-66166843cd1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723163626461386631652D666461302D343235612D393834372D3262636265653230653533614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31323431333763302D653932632D343761332D623536612D393032306566663865386435004A3A74657374557365723234313537663238662D326461662D343161652D623337632D3536633835366234313138374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65326363356232642D666639302D343665332D616164372D396339306135393365363930B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124601" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + ], + "request-id": [ + "812b7a5c-e79d-47cd-8323-5da6a81d720c" + ], + "client-request-id": [ + "26674e6f-f1c8-46e4-afa7-1d38f7c12565" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "QRTOv5IJ5miVgRIvF-cJoS0yz3p8rqXjp66-qCaFK-cGYIzO1-YB07h5DSFsNXr4bOx5m5SWgHCyDiN-z0plGj_E3H7zdMPO1rSxBKeelWGJMUq8xfjn7UfX2t4EPjk4.WE0v8rtBo_dIEIQzfvgiQHrzT7JnRZCSdN6GlQTR97s" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1605006" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723163626461386631652D666461302D343235612D393834372D3262636265653230653533614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31323431333763302D653932632D343761332D623536612D393032306566663865386435004A3A74657374557365723234313537663238662D326461662D343161652D623337632D3536633835366234313138374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65326363356232642D666639302D343665332D616164372D396339306135393365363930B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTYzNjI2NDYxMzg2NjMxNjUyRDY2NjQ2MTMwMkQzNDMyMzU2MTJEMzkzODM0MzcyRDMyNjI2MzYyNjU2NTMyMzA2NTM1MzM2MTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzEzMjM0MzEzMzM3NjMzMDJENjUzOTMyNjMyRDM0Mzc2MTMzMkQ2MjM1MzY2MTJEMzkzMDMyMzA2NTY2NjYzODY1Mzg2NDM1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyMzQzMTM1Mzc2NjMyMzg2NjJEMzI2NDYxNjYyRDM0MzE2MTY1MkQ2MjMzMzc2MzJEMzUzNjYzMzgzNTM2NjIzNDMxMzEzODM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTMyNjM2MzM1NjIzMjY0MkQ2NjY2MzkzMDJEMzQzNjY1MzMyRDYxNjE2NDM3MkQzOTYzMzkzMDYxMzUzOTMzNjUzNjM5MzBCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f605ae40-689e-45b6-b07c-9238c7b94ee3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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.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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723234323032363166652D323861352D346534662D383962392D3638656136353961323761354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33613430366466352D323630332D343933662D396138622D356333646334303930653032004A3A74657374557365723263653434366236362D623362662D343439322D623731352D3036663265393566626139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32633662396662612D356434392D346135622D393932642D316662326339646563316434B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124697" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + ], + "request-id": [ + "7f147a93-c7a2-48bf-9d42-0e660e9e9351" + ], + "client-request-id": [ + "9981da1e-6054-4dcc-9522-d66ad82f480a" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "YofRqqyPam2kuwbzUE9QWEpfiNsoMhcS98rb3Y4gUd-UEQm9x0R0uUlJNkcKYm2hFfb5XVdddRdETnYFlQzSsMJqLMlr-itsCMn96rrRUnlr6aqju3XfrM1CLiEuX7V0.UfFLnG6TeswWn8uO411eyNghZwCBD_ATlbXttf4h9co" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1270087" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723234323032363166652D323861352D346534662D383962392D3638656136353961323761354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33613430366466352D323630332D343933662D396138622D356333646334303930653032004A3A74657374557365723263653434366236362D623362662D343439322D623731352D3036663265393566626139324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32633662396662612D356434392D346135622D393932642D316662326339646563316434B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjM0MzIzMDMyMzYzMTY2NjUyRDMyMzg2MTM1MkQzNDY1MzQ2NjJEMzgzOTYyMzkyRDM2Mzg2NTYxMzYzNTM5NjEzMjM3NjEzNTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzM2MTM0MzAzNjY0NjYzNTJEMzIzNjMwMzMyRDM0MzkzMzY2MkQzOTYxMzg2MjJEMzU2MzMzNjQ2MzM0MzAzOTMwNjUzMDMyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyNjM2NTM0MzQzNjYyMzYzNjJENjIzMzYyNjYyRDM0MzQzOTMyMkQ2MjM3MzEzNTJEMzAzNjY2MzI2NTM5MzU2NjYyNjEzOTMyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjYzMzY2MjM5NjY2MjYxMkQzNTY0MzQzOTJEMzQ2MTM1NjIyRDM5MzkzMjY0MkQzMTY2NjIzMjYzMzk2NDY1NjMzMTY0MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ec3bbb2-5047-4c7e-878c-48e49a2e49a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723263653730653734332D343166662D343334652D623935622D6466356535316137373431344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64376337306536382D656666382D346239612D626130352D303866663131323034383532004A3A74657374557365723334386265613732382D643934332D346234302D396666642D3535346466356264653631314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33346535626233322D616432622D343730342D393934332D353836663431636333396432B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124597" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + ], + "request-id": [ + "91c09c0f-43b0-40c9-a85d-f8a8ad1d681a" + ], + "client-request-id": [ + "5d02629f-ea2f-46ad-9a3a-3990e837839a" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "U2_eRzX_52F7IzkpEajZrQBl6c2FTLlZSCHL2gVMiclRS0qtPJs-u4D9AJGW9KfomORUEguMV6tcKU7DCFuTHJcSdD6e1mOIgISczdkIBdVreJv-YZWSBfb5p_qyisbb.eBtybU-yFS7N2Vx6WaD7nrmeiQVTIAyvSTYhWbmpLaw" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1410060" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723263653730653734332D343166662D343334652D623935622D6466356535316137373431344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64376337306536382D656666382D346239612D626130352D303866663131323034383532004A3A74657374557365723334386265613732382D643934332D346234302D396666642D3535346466356264653631314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33346535626233322D616432622D343730342D393934332D353836663431636333396432B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjYzNjUzNzMwNjUzNzM0MzMyRDM0MzE2NjY2MkQzNDMzMzQ2NTJENjIzOTM1NjIyRDY0NjYzNTY1MzUzMTYxMzczNzM0MzEzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjQzNzYzMzczMDY1MzYzODJENjU2NjY2MzgyRDM0NjIzOTYxMkQ2MjYxMzAzNTJEMzAzODY2NjYzMTMxMzIzMDM0MzgzNTMyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzMzQzODYyNjU2MTM3MzIzODJENjQzOTM0MzMyRDM0NjIzNDMwMkQzOTY2NjY2NDJEMzUzNTM0NjQ2NjM1NjI2NDY1MzYzMTMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzM0NjUzNTYyNjIzMzMyMkQ2MTY0MzI2MjJEMzQzNzMwMzQyRDM5MzkzNDMzMkQzNTM4MzY2NjM0MzE2MzYzMzMzOTY0MzJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d0f4b22-5eee-4708-8043-164445f6db60" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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\": \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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\": \"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 \"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 \"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 \"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\": \"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 \"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\": \"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 \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723334643930396632332D653162372D343063342D386663612D3462376237666166646234644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31666439363032322D363438352D346163392D616538662D333537356665353062633661004A3A74657374557365723365366562343563362D633738622D346437302D626562372D3638313162623863396436624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65346137346335322D333938652D343336392D393335382D643534613265326463656661B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ "124685" @@ -1175,19 +765,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" ], "request-id": [ - "91faefe5-ef56-4935-9dcd-544f83b72a7c" + "3b0f353a-561e-480a-afbb-86ca71d1d714" ], "client-request-id": [ - "f6baac83-4669-41b5-bb7a-9dafb83f1c28" + "997f637e-030e-46ad-b66b-7d77a8856a56" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "sTuvxWlkU1aPcONeYd8buUWY9FBKXcpJS8lRr-FsFxYHLsghXPvOM-v7ngbiAuag_ic0ig0Z98vVwyqEN9jg44hf_JK26CDmcfiFF-dNV91JnY7lhxDiEBXYYE--F1Og.RmNNyi_Wbvnc0BOR-5SLjgJwDA-S3I0P7hdGzYnjYXQ" + "LDt5ALeRjaI4OUnqVYNh0fC7alb2Y7rysPPTP7H1heHIVPDAQ-cipK8p-WPIOH2RTV46T4wFDkg3XPJ-wzcMfPuV4osrTk70xoTU5_DPGqTuiMO48MRK-ASZmnQXLPtR.UDW6nY5u79Q_h-VJMbOibcbOfJ88juK8T6jpp5aTMKk" ], "X-Content-Type-Options": [ "nosniff" @@ -1202,7 +792,7 @@ "*" ], "Duration": [ - "1105713" + "1173019" ], "Cache-Control": [ "no-cache" @@ -1218,34 +808,34 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:05 GMT" + "Mon, 13 Nov 2017 18:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723635333235633830622D313135662D343934612D613064342D3538326362326632646563644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32623237623237652D653961392D346336352D393633372D633765333662323935393535004A3A74657374557365723665366430636237312D333162652D346364662D386337622D3763356338326237386236374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38623735613138612D633739332D343665352D396631392D363433376334323564383165B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjM1MzMzMjM1NjMzODMwNjIyRDMxMzEzNTY2MkQzNDM5MzQ2MTJENjEzMDY0MzQyRDM1MzgzMjYzNjIzMjY2MzI2NDY1NjM2NDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzI2MjMyMzc2MjMyMzc2NTJENjUzOTYxMzkyRDM0NjMzNjM1MkQzOTM2MzMzNzJENjMzNzY1MzMzNjYyMzIzOTM1MzkzNTM1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2NjUzNjY0MzA2MzYyMzczMTJEMzMzMTYyNjUyRDM0NjM2NDY2MkQzODYzMzc2MjJEMzc2MzM1NjMzODMyNjIzNzM4NjIzNjM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODYyMzczNTYxMzEzODYxMkQ2MzM3MzkzMzJEMzQzNjY1MzUyRDM5NjYzMTM5MkQzNjM0MzMzNzYzMzQzMjM1NjQzODMxNjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723334643930396632332D653162372D343063342D386663612D3462376237666166646234644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31666439363032322D363438352D346163392D616538662D333537356665353062633661004A3A74657374557365723365366562343563362D633738622D346437302D626562372D3638313162623863396436624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65346137346335322D333938652D343336392D393335382D643534613265326463656661B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzM0NjQzOTMwMzk2NjMyMzMyRDY1MzE2MjM3MkQzNDMwNjMzNDJEMzg2NjYzNjEyRDM0NjIzNzYyMzc2NjYxNjY2NDYyMzQ2NDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzE2NjY0MzkzNjMwMzIzMjJEMzYzNDM4MzUyRDM0NjE2MzM5MkQ2MTY1Mzg2NjJEMzMzNTM3MzU2NjY1MzUzMDYyNjMzNjYxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzNjUzNjY1NjIzNDM1NjMzNjJENjMzNzM4NjIyRDM0NjQzNzMwMkQ2MjY1NjIzNzJEMzYzODMxMzE2MjYyMzg2MzM5NjQzNjYyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTM0NjEzNzM0NjMzNTMyMkQzMzM5Mzg2NTJEMzQzMzM2MzkyRDM5MzMzNTM4MkQ2NDM1MzQ2MTMyNjUzMjY0NjM2NTY2NjFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40c20075-6641-4ac0-adf0-0f38caed50ee" + "5c5d72aa-0958-4fc1-9e1f-6d65dc59a331" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723665623131366166352D383664612D343963392D393536322D3031633730626463383330634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61323333336238342D636438632D346163322D383438652D343461663738626363386637004A3A74657374557365723737663635326566372D303336322D343566332D626634662D6561656166353933643263304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646136633361342D393139382D343438652D616339302D363262613537336339306437B900000000000000000000'\"\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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365373332626664372D313333342D343866632D613261662D3963393764396632356164384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66376339636233342D313762632D346236392D616161352D663536323435386433343034004A3A74657374557365723436666535623334662D616435652D346433372D626430392D3065383337323533356633384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39633031393531312D393135622D343433392D616132612D326561323533623037346439B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124577" + "124589" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1257,19 +847,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "bf3f397c-ed64-49ee-be6b-573a70ec5f4f" + "15d38cfe-7a17-4d7f-a1c9-1f362f33cd11" ], "client-request-id": [ - "b4793714-fccf-4902-9413-0d930b87d60a" + "d76bc112-cf7f-479d-a6c8-b4d8dfaea4cb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "8QdlEgqf2BFw-sCDh2D7OwD8vX0KPvd0UYd3te01XY08_0hVk9x5PJf0JoJ6Rmc_aLqjMyebyGHvb3cO1ctnavx4cUi2aVMDiwMk6GvBPnN7dXYoXIhnK3rEg730Z1BY.ebVFgrHbp900fHgZuoJso-HEaSUUyDZ0kDaz1YuSKTI" + "nLFUhrFULFlu8E9xOqxP38XiYHsQllNe9nCforDrBjax_dMohQmeLZMfizhv-yAmULkGFDbbGiTTYhW-6iJqsgJ2THqRfc-MRUJsTqWOXfLeJACPAmKdvBB0GlCvI5wZ.D9Pk_lEcBbi0tbuh5mJFyqPEGyDucyZWeoiJavwd0PI" ], "X-Content-Type-Options": [ "nosniff" @@ -1284,7 +874,7 @@ "*" ], "Duration": [ - "1334501" + "2294604" ], "Cache-Control": [ "no-cache" @@ -1300,34 +890,34 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:05 GMT" + "Mon, 13 Nov 2017 18:06:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723665623131366166352D383664612D343963392D393536322D3031633730626463383330634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61323333336238342D636438632D346163322D383438652D343461663738626363386637004A3A74657374557365723737663635326566372D303336322D343566332D626634662D6561656166353933643263304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646136633361342D393139382D343438652D616339302D363262613537336339306437B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjY1NjIzMTMxMzY2MTY2MzUyRDM4MzY2NDYxMkQzNDM5NjMzOTJEMzkzNTM2MzIyRDMwMzE2MzM3MzA2MjY0NjMzODMzMzA2MzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjEzMjMzMzMzMzYyMzgzNDJENjM2NDM4NjMyRDM0NjE2MzMyMkQzODM0Mzg2NTJEMzQzNDYxNjYzNzM4NjI2MzYzMzg2NjM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3Mzc2NjM2MzUzMjY1NjYzNzJEMzAzMzM2MzIyRDM0MzU2NjMzMkQ2MjY2MzQ2NjJENjU2MTY1NjE2NjM1MzkzMzY0MzI2MzMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDY0NjEzNjYzMzM2MTM0MkQzOTMxMzkzODJEMzQzNDM4NjUyRDYxNjMzOTMwMkQzNjMyNjI2MTM1MzczMzYzMzkzMDY0MzdCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365373332626664372D313333342D343866632D613261662D3963393764396632356164384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66376339636233342D313762632D346236392D616161352D663536323435386433343034004A3A74657374557365723436666535623334662D616435652D346433372D626430392D3065383337323533356633384072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39633031393531312D393135622D343433392D616132612D326561323533623037346439B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzY1MzczMzMyNjI2NjY0MzcyRDMxMzMzMzM0MkQzNDM4NjY2MzJENjEzMjYxNjYyRDM5NjMzOTM3NjQzOTY2MzIzNTYxNjQzODQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjYzNzYzMzk2MzYyMzMzNDJEMzEzNzYyNjMyRDM0NjIzNjM5MkQ2MTYxNjEzNTJENjYzNTM2MzIzNDM1Mzg2NDMzMzQzMDM0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0MzY2NjY1MzU2MjMzMzQ2NjJENjE2NDM1NjUyRDM0NjQzMzM3MkQ2MjY0MzAzOTJEMzA2NTM4MzMzNzMyMzUzMzM1NjYzMzM4NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzOTYzMzAzMTM5MzUzMTMxMkQzOTMxMzU2MjJEMzQzNDMzMzkyRDYxNjEzMjYxMkQzMjY1NjEzMjM1MzM2MjMwMzczNDY0MzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b84e4a6-c55c-48ad-9d3d-09e5dea67790" + "58ec3567-6c87-41ac-bb4a-7f473c93b9ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723738313064653237302D613837622D343734652D626137372D3632653236666132646561394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37373363633236302D636163612D346564622D616639392D313430326138333034353765004A3A74657374557365723830373562316363642D313736342D343239312D396635622D6366666335653032623235624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31323862376431642D393063352D343139382D396336302D353166333639303037353634B900000000000000000000'\"\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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723437306365303332652D303839352D346637612D626332312D3866643866363830346330654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35333635363331322D363738612D346565622D396533622D663031633437313238366534004A3A74657374557365723466613133646166652D313165632D343865332D613833652D3065653762666336343632664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F38653837626532372D386334322D343766352D383265632D336533343861623566646230B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124573" + "124701" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1339,19 +929,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" + "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" ], "request-id": [ - "ab2ea5fd-a37f-440c-8a14-621b9fb23a01" + "99efbc73-4c4a-4bd4-bcab-8e02efd4894a" ], "client-request-id": [ - "04fe92e0-18f7-4422-a69b-e465b0a1bd9f" + "a1ea9543-bb3c-4f9c-92cc-58b9c3611a26" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zSB6F4aFCzQDS2Wd3RIq5sm270EoUQUHZw3fqhQ8kxseT37tcxW4vnbaM2AVlL10IlP1jGbnIkTFZi5Dfd_XW6gqM272SO9V5S4khyEjacVSFpyQmQnQW10bxzLF-MuJ.QleHJ-5LHWRgNK7LdFIyjOz6xlQ-DmDeonQxaJtS3eU" + "YJxATR5SIDL56StL9PGsGfbWhXtrt6geb4ryfWQC3k1Ptd8upVoq6DZsBQyAX-igGNuJDsLH8yfsRjx_mVLkSbLPxq-7g_esI0Nwx2F-5NHnQgJlvc5aCtLGcc1TzERu.4ve6t_MQo25k7_rzNcfcyTYcnSh5HLSfwALDpnQGCmM" ], "X-Content-Type-Options": [ "nosniff" @@ -1366,7 +956,7 @@ "*" ], "Duration": [ - "2696010" + "1657660" ], "Cache-Control": [ "no-cache" @@ -1382,113 +972,31 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:05 GMT" + "Mon, 13 Nov 2017 18:06:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723738313064653237302D613837622D343734652D626137372D3632653236666132646561394072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37373363633236302D636163612D346564622D616639392D313430326138333034353765004A3A74657374557365723830373562316363642D313736342D343239312D396635622D6366666335653032623235624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31323862376431642D393063352D343139382D396336302D353166333639303037353634B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzM4MzEzMDY0NjUzMjM3MzAyRDYxMzgzNzYyMkQzNDM3MzQ2NTJENjI2MTM3MzcyRDM2MzI2NTMyMzY2NjYxMzI2NDY1NjEzOTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNzMzNjM2MzMyMzYzMDJENjM2MTYzNjEyRDM0NjU2NDYyMkQ2MTY2MzkzOTJEMzEzNDMwMzI2MTM4MzMzMDM0MzUzNzY1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4MzAzNzM1NjIzMTYzNjM2NDJEMzEzNzM2MzQyRDM0MzIzOTMxMkQzOTY2MzU2MjJENjM2NjY2NjMzNTY1MzAzMjYyMzIzNTYyNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTMyMzg2MjM3NjQzMTY0MkQzOTMwNjMzNTJEMzQzMTM5MzgyRDM5NjMzNjMwMkQzNTMxNjYzMzM2MzkzMDMwMzczNTM2MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723437306365303332652D303839352D346637612D626332312D3866643866363830346330654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35333635363331322D363738612D346565622D396533622D663031633437313238366534004A3A74657374557365723466613133646166652D313165632D343865332D613833652D3065653762666336343632664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F38653837626532372D386334322D343766352D383265632D336533343861623566646230B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDM3MzA2MzY1MzAzMzMyNjUyRDMwMzgzOTM1MkQzNDY2Mzc2MTJENjI2MzMyMzEyRDM4NjY2NDM4NjYzNjM4MzAzNDYzMzA2NTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzUzMzM2MzUzNjMzMzEzMjJEMzYzNzM4NjEyRDM0NjU2NTYyMkQzOTY1MzM2MjJENjYzMDMxNjMzNDM3MzEzMjM4MzY2NTM0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0NjY2MTMxMzM2NDYxNjY2NTJEMzEzMTY1NjMyRDM0Mzg2NTMzMkQ2MTM4MzM2NTJEMzA2NTY1Mzc2MjY2NjMzNjM0MzYzMjY2NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODY1MzgzNzYyNjUzMjM3MkQzODYzMzQzMjJEMzQzNzY2MzUyRDM4MzI2NTYzMkQzMzY1MzMzNDM4NjE2MjM1NjY2NDYyMzBCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2110c2f8-dd27-4972-840e-0bfadd99778b" + "7f0d9518-f1da-485b-b542-19224a73cc1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723830383463623639372D653434382D346565312D393332622D3535393236316232633062654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31396163356165312D666461342D346464302D613833362D303837333431393236323164004A3A74657374557365723861353364376363372D396535612D343732652D393738382D3963313639333538316630344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36616139346530622D666561362D346638632D393438612D303433323964376433386263B900000000000000000000'\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "124677" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" - ], - "request-id": [ - "3131be56-cdd6-4b61-b01e-a4b7ee098215" - ], - "client-request-id": [ - "c5c1ba5f-9cc4-4ff5-81c9-6b0e824c163e" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "j6UkGncxEzQCiMTtVzxjahHena-Zi9mS1ocxTP8y8tUl0TwfqB76BXAofMmDZvyGvYdYHtO29Gb6xU4Cz1aF3klwNtu-bheSUyJZMGuyxf85dJbMAZkDDCGmdo31mz4_.Jlu1OmEPKlom7wCvLxrkp9j8qdQ-3dla-lYN0BqYS7Q" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Duration": [ - "2066827" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723830383463623639372D653434382D346565312D393332622D3535393236316232633062654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31396163356165312D666461342D346464302D613833362D303837333431393236323164004A3A74657374557365723861353364376363372D396535612D343732652D393738382D3963313639333538316630344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F36616139346530622D666561362D346638632D393438612D303433323964376433386263B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODMwMzgzNDYzNjIzNjM5MzcyRDY1MzQzNDM4MkQzNDY1NjUzMTJEMzkzMzMyNjIyRDM1MzUzOTMyMzYzMTYyMzI2MzMwNjI2NTQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzEzOTYxNjMzNTYxNjUzMTJENjY2NDYxMzQyRDM0NjQ2NDMwMkQ2MTM4MzMzNjJEMzAzODM3MzMzNDMxMzkzMjM2MzIzMTY0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4NjEzNTMzNjQzNzYzNjMzNzJEMzk2NTM1NjEyRDM0MzczMjY1MkQzOTM3MzgzODJEMzk2MzMxMzYzOTMzMzUzODMxNjYzMDM0NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjYxNjEzOTM0NjUzMDYyMkQ2NjY1NjEzNjJEMzQ2NjM4NjMyRDM5MzQzODYxMkQzMDM0MzMzMjM5NjQzNzY0MzMzODYyNjNCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "893dcc42-aed3-4cc7-8dba-288130676fd5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723861383661366530332D663165312D343731652D396665662D3334356231613061313233324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39393165313132652D306537312D343166362D613134322D303461396531393663656463004A3A74657374557365723932333737636132612D373936632D343533342D613964362D3338336563633232316666664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32353830626633612D623132642D346136612D383263652D333337613065336237613439B900000000000000000000'\"\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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723466616632383737352D666464632D346561382D393232382D3066366663613934643365314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61656339613536312D616266352D343435652D383331622D346562653031363633643062004A3A74657374557365723537393935366433372D303866652D343563632D383766382D3039613736386632383066354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37373436353535612D643366632D346432322D623962652D656366633931376438353635B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ "124585" @@ -1503,19 +1011,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "vrocKICWpWBXlmHs3RTmaqrB9kYlG5N8rcTCadnP9jw=" ], "request-id": [ - "fb628720-6ec7-424f-a7d2-f43830f629d4" + "5a3d7adf-c047-4ee2-8f6c-eade4dba2718" ], "client-request-id": [ - "ababe75a-a210-414d-870a-298e7e588f8b" + "c99ad445-4fab-4b9e-816a-4d7352c70f15" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "WIrpDE4k3vBpDr6bWjiKgrjVG7wyInQTxoKBfKh-StU6Z0xmCBwtmsTQvn7aSz-cImZa9JcBNwhQxO6bvorhgNAJM8PtwMI4hGAOCsjCv7JGjdfbadOB1PTmZHslxrfg.4X9NTXB7cWJcGtCMnz-pRSaY1oEC2K2FCWayXK4-BIM" + "pD0vSbuTeAEIZ6Da36rso6S_32b80IgU4_FyAswOjSMzOyjusc_N4hJzqmx6g5FzcD4dF7UosaZSVf81KPKqjLMlysvX3hfs7iPyOZBOvhvpB7tpRL5zBH-kq813ceFO.D0i4BtKFrVxbtjoPQ5kjWl5JwwZnzV7lYLB5nJ1cHrg" ], "X-Content-Type-Options": [ "nosniff" @@ -1530,7 +1038,7 @@ "*" ], "Duration": [ - "1296431" + "1512794" ], "Cache-Control": [ "no-cache" @@ -1546,31 +1054,441 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:06 GMT" + "Mon, 13 Nov 2017 18:06:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723861383661366530332D663165312D343731652D396665662D3334356231613061313233324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F39393165313132652D306537312D343166362D613134322D303461396531393663656463004A3A74657374557365723932333737636132612D373936632D343533342D613964362D3338336563633232316666664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32353830626633612D623132642D346136612D383263652D333337613065336237613439B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODYxMzgzNjYxMzY2NTMwMzMyRDY2MzE2NTMxMkQzNDM3MzE2NTJEMzk2NjY1NjYyRDMzMzQzNTYyMzE2MTMwNjEzMTMyMzMzMjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzkzOTMxNjUzMTMxMzI2NTJEMzA2NTM3MzEyRDM0MzE2NjM2MkQ2MTMxMzQzMjJEMzAzNDYxMzk2NTMxMzkzNjYzNjU2NDYzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5MzIzMzM3Mzc2MzYxMzI2MTJEMzczOTM2NjMyRDM0MzUzMzM0MkQ2MTM5NjQzNjJEMzMzODMzNjU2MzYzMzIzMjMxNjY2NjY2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjM1MzgzMDYyNjYzMzYxMkQ2MjMxMzI2NDJEMzQ2MTM2NjEyRDM4MzI2MzY1MkQzMzMzMzc2MTMwNjUzMzYyMzc2MTM0MzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723466616632383737352D666464632D346561382D393232382D3066366663613934643365314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61656339613536312D616266352D343435652D383331622D346562653031363633643062004A3A74657374557365723537393935366433372D303866652D343563632D383766382D3039613736386632383066354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37373436353535612D643366632D346432322D623962652D656366633931376438353635B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDY2NjE2NjMyMzgzNzM3MzUyRDY2NjQ2NDYzMkQzNDY1NjEzODJEMzkzMjMyMzgyRDMwNjYzNjY2NjM2MTM5MzQ2NDMzNjUzMTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjE2NTYzMzk2MTM1MzYzMTJENjE2MjY2MzUyRDM0MzQzNTY1MkQzODMzMzE2MjJEMzQ2NTYyNjUzMDMxMzYzNjMzNjQzMDYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1MzczOTM5MzUzNjY0MzMzNzJEMzAzODY2NjUyRDM0MzU2MzYzMkQzODM3NjYzODJEMzAzOTYxMzczNjM4NjYzMjM4MzA2NjM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNzM3MzQzNjM1MzUzNTYxMkQ2NDMzNjY2MzJEMzQ2NDMyMzIyRDYyMzk2MjY1MkQ2NTYzNjY2MzM5MzEzNzY0MzgzNTM2MzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73b23cd4-f1b6-469b-ba01-958ad6479f94" + "7cae9b2f-e06f-4283-a209-e743ebd6d9ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723932353336323364632D303034372D346439662D626231342D3830313335303663313836364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30363066346136652D306134302D343065392D626430302D336436346331616630343730004A3A74657374557365723962313931396534642D623034382D346134372D626335332D3537623434343666633366354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34396333656537352D363463612D343731662D613638612D343930636139616434666631B900000000000000000000'\"\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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723537613932333864322D383132392D343337352D383761642D3963623935663462313863664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62363834353163322D643838662D343764632D396263382D383863626261383031383139004A3A74657374557365723630346536386634652D373739662D343738652D626630652D3034366564346562353765654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F38366561653631622D323331622D346137302D613265302D623765663238376266333932B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124581" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + ], + "request-id": [ + "1c6fa5e7-6109-4483-8ee5-d65350b0e5f6" + ], + "client-request-id": [ + "44dd957a-2d6c-4dcc-80a8-8cbe426a2580" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "J1e0P3HA4yJGDsiO7g3LGN_HEGobcHFy5ngyqVe89W5lOOIYOfLgyWx7nj312B4_EF8VMmb9dFx7sjOhxcAWeZ29jEDzdvFE6qMfTM9naL3HFpSWe1gs74MTAyENH3Rc.heOm2eglXvSO24LGus7hojQUKkD7s9z2bLh316DGAi0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1936120" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723537613932333864322D383132392D343337352D383761642D3963623935663462313863664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62363834353163322D643838662D343764632D396263382D383863626261383031383139004A3A74657374557365723630346536386634652D373739662D343738652D626630652D3034366564346562353765654072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F38366561653631622D323331622D346137302D613265302D623765663238376266333932B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTM3NjEzOTMyMzMzODY0MzIyRDM4MzEzMjM5MkQzNDMzMzczNTJEMzgzNzYxNjQyRDM5NjM2MjM5MzU2NjM0NjIzMTM4NjM2NjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjIzNjM4MzQzNTMxNjMzMjJENjQzODM4NjYyRDM0Mzc2NDYzMkQzOTYyNjMzODJEMzgzODYzNjI2MjYxMzgzMDMxMzgzMTM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzAzNDY1MzYzODY2MzQ2NTJEMzczNzM5NjYyRDM0MzczODY1MkQ2MjY2MzA2NTJEMzAzNDM2NjU2NDM0NjU2MjM1Mzc2NTY1NDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODM2NjU2MTY1MzYzMTYyMkQzMjMzMzE2MjJEMzQ2MTM3MzAyRDYxMzI2NTMwMkQ2MjM3NjU2NjMyMzgzNzYyNjYzMzM5MzJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22888fe5-8f47-4ae5-8d20-d2b0d86d859e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723630356466663266642D653733642D343934362D386664372D6264613939613464343637374072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61383939313561652D333461322D343334392D623561372D353436333734623130313633004A3A74657374557365723639326261313261312D353438392D346161652D383338362D6634613934313739323231384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31323766636234662D383830322D343035302D626332322D343064626631346162363662B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124729" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + ], + "request-id": [ + "7c889e0b-76e7-4c38-8d1e-4b0a2e65dec7" + ], + "client-request-id": [ + "58d6f378-0c01-4e11-8a8e-cf650a36ad47" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "uLrZ8I_5EsfNNoJwLmZWLOnOA8N_dRukrUqlUiUH8mgK79HHTFt5WxNhQ-Cxz8WsMxtOGAqHnzHSVvjzj-8Dxbn94K1eKpOEfGCcL1TXXHonHzwDm_gHmL9E-YTQ6fuw.-7EfH8LRWs4at7KjM2NRClf5OG4cZR8usA9uR67jX2I" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2151265" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723630356466663266642D653733642D343934362D386664372D6264613939613464343637374072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61383939313561652D333461322D343334392D623561372D353436333734623130313633004A3A74657374557365723639326261313261312D353438392D346161652D383338362D6634613934313739323231384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31323766636234662D383830322D343035302D626332322D343064626631346162363662B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjMwMzU2NDY2NjYzMjY2NjQyRDY1MzczMzY0MkQzNDM5MzQzNjJEMzg2NjY0MzcyRDYyNjQ2MTM5Mzk2MTM0NjQzNDM2MzczNzQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjEzODM5MzkzMTM1NjE2NTJEMzMzNDYxMzIyRDM0MzMzNDM5MkQ2MjM1NjEzNzJEMzUzNDM2MzMzNzM0NjIzMTMwMzEzNjMzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzkzMjYyNjEzMTMyNjEzMTJEMzUzNDM4MzkyRDM0NjE2MTY1MkQzODMzMzgzNjJENjYzNDYxMzkzNDMxMzczOTMyMzIzMTM4NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTMyMzc2NjYzNjIzNDY2MkQzODM4MzAzMjJEMzQzMDM1MzAyRDYyNjMzMjMyMkQzNDMwNjQ2MjY2MzEzNDYxNjIzNjM2NjJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d12833e2-390a-4631-aa93-eb2a1aea1e5c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335004A3A74657374557365723731663030316132342D353664632D346563652D396438642D3865383734333334356532654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36383862393265612D646134622D346162322D623130342D313961633734303765373263B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124569" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + ], + "request-id": [ + "addf6e5b-090a-4850-89dd-f6a3e0a06738" + ], + "client-request-id": [ + "f6fae6a0-3e28-4d54-b213-2d35e0af4260" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "c0YWV2UOnTuztfWI5Vjny02wc2d1xk8Pbmui6RthZgfI1JfJYLpzFXF6YlpHJhR4FePlYfqG4jMRIBtJCw70mgcyYWbBXQ5gdWie3p-4LsQFquER52nzGBkW-yI7PdVD.7S3VVg4RKdPxAoPrrzFHLWX2Qt9ewe18Q3jgJudftxU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "3222289" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335004A3A74657374557365723731663030316132342D353664632D346563652D396438642D3865383734333334356532654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36383862393265612D646134622D346162322D623130342D313961633734303765373263B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjM5MzkzMjY0NjI2MTM5MzEyRDMwMzY2NDYzMkQzNDMwMzYzNDJEMzk2NTY0NjUyRDMxMzU2NTMyMzgzNDMyNjMzMzMzMzgzOTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzA2MzM0NjUzMjM0MzE2NTJEMzg2NDY0MzgyRDM0MzkzNzM0MkQzODM1NjIzMjJEMzczODYxNjIzNzMyNjEzNzYxMzM2MzM1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3MzE2NjMwMzAzMTYxMzIzNDJEMzUzNjY0NjMyRDM0NjU2MzY1MkQzOTY0Mzg2NDJEMzg2NTM4MzczNDMzMzMzNDM1NjUzMjY1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjM4Mzg2MjM5MzI2NTYxMkQ2NDYxMzQ2MjJEMzQ2MTYyMzIyRDYyMzEzMDM0MkQzMTM5NjE2MzM3MzQzMDM3NjUzNzMyNjNCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "573027f8-173b-4846-bf65-fa6956b9ef74" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723732303339616165362D336564372D343834382D393430642D6633306461396330633739394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33363961623533372D343633342D346136652D626631652D336534316533353033653132004A3A74657374557365723761383439353030392D336534332D343231342D626630662D3235333437383633373736394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36653061363261312D656338352D346336322D623232342D363861623833633037663766B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124697" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + ], + "request-id": [ + "e8e5b469-fd19-4cf8-a5dc-04ecd157efb1" + ], + "client-request-id": [ + "fba45191-e39f-415b-9f8e-40f7e4936ae2" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "A4mY60qxEVNTmlJP739wGK5zxEhHD3PWPfX7Ujh7MD74K7XRH9fsuZH8H5qOxUcWPFvh9177OcVJBw3aTAsFT2g_divYfclIknH8PJ6Ar4n48KWshnjIFxgKubvumf3N.lrOq4DYI0rjgscOXKVfzvamwHty_eg7XWMgBuOTWZ9Y" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1295254" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723732303339616165362D336564372D343834382D393430642D6633306461396330633739394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33363961623533372D343633342D346136652D626631652D336534316533353033653132004A3A74657374557365723761383439353030392D336534332D343231342D626630662D3235333437383633373736394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36653061363261312D656338352D346336322D623232342D363861623833633037663766B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzMyMzAzMzM5NjE2MTY1MzYyRDMzNjU2NDM3MkQzNDM4MzQzODJEMzkzNDMwNjQyRDY2MzMzMDY0NjEzOTYzMzA2MzM3MzkzOTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzMzNjM5NjE2MjM1MzMzNzJEMzQzNjMzMzQyRDM0NjEzNjY1MkQ2MjY2MzE2NTJEMzM2NTM0MzE2NTMzMzUzMDMzNjUzMTMyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3NjEzODM0MzkzNTMwMzAzOTJEMzM2NTM0MzMyRDM0MzIzMTM0MkQ2MjY2MzA2NjJEMzIzNTMzMzQzNzM4MzYzMzM3MzczNjM5NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjY1MzA2MTM2MzI2MTMxMkQ2NTYzMzgzNTJEMzQ2MzM2MzIyRDYyMzIzMjM0MkQzNjM4NjE2MjM4MzM2MzMwMzc2NjM3NjZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "235c70f0-2e67-4127-87b2-5fbe91a1745a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723761386337363330392D306662642D343837302D613238332D3137623666353838316230654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30666465623730642D646638662D343964662D383631312D653764383963383865323065004A3A74657374557365723833323838353561332D366666622D346166362D386536642D3938303031333136326665344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61393562323736632D363936372D346130322D383535342D643166316230623065313166B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124581" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" + ], + "request-id": [ + "3a9ebc4e-ce8e-444b-8771-61f36abcc6f3" + ], + "client-request-id": [ + "dd21724a-4503-4dd0-8d86-45e441a43e6f" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "y3kcU1DfWzWNtXf-b6TRVZ5PXN469munXY2IM__OlFAYeolXqIp2WLboa7loiMW7BxGnzen7MI7qJbwfVvmGLK_xs43AUGFvdwKwTa_Os24bDRVThjONM3EglOZbloF0.gEzTO-I_QGVNzGCJ-hJSp3pK8Nrlbe_47zwGZbj2CNI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1510291" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723761386337363330392D306662642D343837302D613238332D3137623666353838316230654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30666465623730642D646638662D343964662D383631312D653764383963383865323065004A3A74657374557365723833323838353561332D366666622D346166362D386536642D3938303031333136326665344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61393562323736632D363936372D346130322D383535342D643166316230623065313166B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzYxMzg2MzM3MzYzMzMwMzkyRDMwNjY2MjY0MkQzNDM4MzczMDJENjEzMjM4MzMyRDMxMzc2MjM2NjYzNTM4MzgzMTYyMzA2NTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzA2NjY0NjU2MjM3MzA2NDJENjQ2NjM4NjYyRDM0Mzk2NDY2MkQzODM2MzEzMTJENjUzNzY0MzgzOTYzMzgzODY1MzIzMDY1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4MzMzMjM4MzgzNTM1NjEzMzJEMzY2NjY2NjIyRDM0NjE2NjM2MkQzODY1MzY2NDJEMzkzODMwMzAzMTMzMzEzNjMyNjY2NTM0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MTM5MzU2MjMyMzczNjYzMkQzNjM5MzYzNzJEMzQ2MTMwMzIyRDM4MzUzNTM0MkQ2NDMxNjYzMTYyMzA2MjMwNjUzMTMxNjZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6a1d6fa-d4c8-44b3-99c0-19281055be8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723833343964373232372D666234662D343931622D393838332D3230656666343831616462324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65393032633732372D376662352D343465382D613634352D316133316134393430653266004A3A74657374557365723863333139303635382D306265322D343534312D396133352D3638623464366332363036364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35636666376461372D313265342D346466622D393434652D643565633835663863643038B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ "124689" @@ -1585,19 +1503,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "07e1db35-d941-4ea3-a253-4094a152f881" + "8708745c-4ed6-4339-91dc-e9e7dd75fc07" ], "client-request-id": [ - "e0e5d384-dc7d-416f-a07f-cec14d3255e2" + "3eb0ea3f-acf9-4f93-a708-0c0e6bf214ee" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "muw7DrAcWCZvCaXFzcktIUx5hWoTfpWEtGlwYBz12XxXXpwfStverEWRA1u_ekI0oUKu_qqsh22xJycPds0_jUko1BLdKHyM-5RN56m8y4ynWclqUVm0qv_4DNNU5Z0X.FTr6bv8gaEQtwE6UhzMeGfKBChBZz4ybBSya1u-j5Ek" + "pDRxjbYl-PNfX-F2Y1FzZktS_pTKC6LsFgD1eCBgBx32tvGmhIULBU36XT_InNH5PqGMhxPkgGfUTvwCzhBN4u1GabiwSi5wOR_r72u_5RdFaCNs5qG97uCwpQr0Zeup.WUHpwBAlZ73z9zqsB2L7ZeTabLdNXDoCB8Pv7JYuPP0" ], "X-Content-Type-Options": [ "nosniff" @@ -1612,7 +1530,7 @@ "*" ], "Duration": [ - "1466120" + "1725109" ], "Cache-Control": [ "no-cache" @@ -1628,34 +1546,34 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:06 GMT" + "Mon, 13 Nov 2017 18:06:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723932353336323364632D303034372D346439662D626231342D3830313335303663313836364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30363066346136652D306134302D343065392D626430302D336436346331616630343730004A3A74657374557365723962313931396534642D623034382D346134372D626335332D3537623434343666633366354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34396333656537352D363463612D343731662D613638612D343930636139616434666631B900000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzOTMyMzUzMzM2MzIzMzY0NjMyRDMwMzAzNDM3MkQzNDY0Mzk2NjJENjI2MjMxMzQyRDM4MzAzMTMzMzUzMDM2NjMzMTM4MzYzNjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzAzNjMwNjYzNDYxMzY2NTJEMzA2MTM0MzAyRDM0MzA2NTM5MkQ2MjY0MzAzMDJEMzM2NDM2MzQ2MzMxNjE2NjMwMzQzNzMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5NjIzMTM5MzEzOTY1MzQ2NDJENjIzMDM0MzgyRDM0NjEzNDM3MkQ2MjYzMzUzMzJEMzUzNzYyMzQzNDM0MzY2NjYzMzM2NjM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDM5NjMzMzY1NjUzNzM1MkQzNjM0NjM2MTJEMzQzNzMxNjYyRDYxMzYzODYxMkQzNDM5MzA2MzYxMzk2MTY0MzQ2NjY2MzFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723833343964373232372D666234662D343931622D393838332D3230656666343831616462324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65393032633732372D376662352D343465382D613634352D316133316134393430653266004A3A74657374557365723863333139303635382D306265322D343534312D396133352D3638623464366332363036364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35636666376461372D313265342D346466622D393434652D643565633835663863643038B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODMzMzQzOTY0MzczMjMyMzcyRDY2NjIzNDY2MkQzNDM5MzE2MjJEMzkzODM4MzMyRDMyMzA2NTY2NjYzNDM4MzE2MTY0NjIzMjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjUzOTMwMzI2MzM3MzIzNzJEMzc2NjYyMzUyRDM0MzQ2NTM4MkQ2MTM2MzQzNTJEMzE2MTMzMzE2MTM0MzkzNDMwNjUzMjY2MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4NjMzMzMxMzkzMDM2MzUzODJEMzA2MjY1MzIyRDM0MzUzNDMxMkQzOTYxMzMzNTJEMzYzODYyMzQ2NDM2NjMzMjM2MzAzNjM2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNTYzNjY2NjM3NjQ2MTM3MkQzMTMyNjUzNDJEMzQ2NDY2NjIyRDM5MzQzNDY1MkQ2NDM1NjU2MzM4MzU2NjM4NjM2NDMwMzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b659c7ce-1c7b-4d50-8fab-22da5b22d7dc" + "146a7367-bd37-4d52-8c1c-882d21becca5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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}", + "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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723863333766343634352D313063302D346338642D616162662D6639323637623733633535344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30353533356438342D393531362D343134382D383432332D313961313836353465323861004A3A74657374557365723934323366396265342D623030362D343430362D383338342D3439636462653737363466384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35306265643933362D373136302D346333652D616637632D343234353238616263666634B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "89387" + "124593" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1667,19 +1585,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" ], "request-id": [ - "6ffcc9bf-e7a5-4bbe-aab7-511c3124e625" + "cfc5b053-994e-4a06-aa0b-612c270147d0" ], "client-request-id": [ - "abc3c2f2-6b64-44b6-956b-2d3f77f9c244" + "5b4621f0-eda3-4292-b608-aad5897201ba" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "7dGLsXNPrX_vmlicRwlDA9pxHT0Il8A8R7goTQb254eu_FkW5Yjx8P1A-6pEs67Z6ozFK6_tQ_KrK0lr4XA11VBD4Dl309Oo6cAluc_OCsnp67-Wkkxjz-iPvEDwV_u9.jr9H5iB6-6Je6CVt1HYOBTrOdQWwNXSAob2P8ieei-A" + "UQySpV5oBICvrMzoYYxPgy2Bmu_0-CJS0LAOP5Bzy9w4Gu5IVMhRISikGrj5jDx64mTCvYbj6ENpAzwO3eJzmld8WLVGzvF5X9wQ8EZ7EIXQDUN8Vy9LMNLU5CIh_B0z.KKbFnKwfkssJ9RRf15nw4sLHfHff3TFXAqeXpgAF2v0" ], "X-Content-Type-Options": [ "nosniff" @@ -1694,7 +1612,7 @@ "*" ], "Duration": [ - "981362" + "1205603" ], "Cache-Control": [ "no-cache" @@ -1710,7 +1628,171 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:06 GMT" + "Mon, 13 Nov 2017 18:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723863333766343634352D313063302D346338642D616162662D6639323637623733633535344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30353533356438342D393531362D343134382D383432332D313961313836353465323861004A3A74657374557365723934323366396265342D623030362D343430362D383338342D3439636462653737363466384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F35306265643933362D373136302D346333652D616637632D343234353238616263666634B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODYzMzMzNzY2MzQzNjM0MzUyRDMxMzA2MzMwMkQzNDYzMzg2NDJENjE2MTYyNjYyRDY2MzkzMjM2Mzc2MjM3MzM2MzM1MzUzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzAzNTM1MzMzNTY0MzgzNDJEMzkzNTMxMzYyRDM0MzEzNDM4MkQzODM0MzIzMzJEMzEzOTYxMzEzODM2MzUzNDY1MzIzODYxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5MzQzMjMzNjYzOTYyNjUzNDJENjIzMDMwMzYyRDM0MzQzMDM2MkQzODMzMzgzNDJEMzQzOTYzNjQ2MjY1MzczNzM2MzQ2NjM4NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNTMwNjI2NTY0MzkzMzM2MkQzNzMxMzYzMDJEMzQ2MzMzNjUyRDYxNjYzNzYzMkQzNDMyMzQzNTMyMzg2MTYyNjM2NjY2MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0751605f-ea96-4d6c-b0e2-f16811f9d0d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934333532613132312D346630392D343235362D386134322D6163343038316333353333624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63353637626630362D373938662D343161622D626633342D316631613930323930613962004A3A74657374557365723963346661386539642D393038642D346661322D393335642D3461656535306331306435654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61306665623435332D386566302D343361392D616465392D383962393735323033336565B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124713" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + ], + "request-id": [ + "871ccb96-8efa-4610-a8d8-8314c61949cc" + ], + "client-request-id": [ + "9151c2b3-0655-4e69-bcdf-85ba275fdc1a" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "VlXUQ2oNo-rkTjiULGOGYbFcw43nOIl3u8v1Kiu48zlEwtU5MZXepYm1MkOTO8Se1JB0XjdbBjbzF19YmtiVf4K4HY5MD9jB3luXs-7XtwjBasZBEM59tWfvopKV8LKz.lEtdNYNyp-3XkoNqWkyelZ3GhWPr7U2X-5VTpwT0Zgs" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1941964" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934333532613132312D346630392D343235362D386134322D6163343038316333353333624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63353637626630362D373938662D343161622D626633342D316631613930323930613962004A3A74657374557365723963346661386539642D393038642D346661322D393335642D3461656535306331306435654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F61306665623435332D386566302D343361392D616465392D383962393735323033336565B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzOTM0MzMzNTMyNjEzMTMyMzEyRDM0NjYzMDM5MkQzNDMyMzUzNjJEMzg2MTM0MzIyRDYxNjMzNDMwMzgzMTYzMzMzNTMzMzM2MjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjMzNTM2Mzc2MjY2MzAzNjJEMzczOTM4NjYyRDM0MzE2MTYyMkQ2MjY2MzMzNDJEMzE2NjMxNjEzOTMwMzIzOTMwNjEzOTYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5NjMzNDY2NjEzODY1Mzk2NDJEMzkzMDM4NjQyRDM0NjY2MTMyMkQzOTMzMzU2NDJEMzQ2MTY1NjUzNTMwNjMzMTMwNjQzNTY1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MTMwNjY2NTYyMzQzNTMzMkQzODY1NjYzMDJEMzQzMzYxMzkyRDYxNjQ2NTM5MkQzODM5NjIzOTM3MzUzMjMwMzMzMzY1NjVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbce8306-bea8-443a-ab78-f9df1ee4a9f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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": [ + "72035" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + ], + "request-id": [ + "56c55f9b-44e5-4769-b588-eaf7ff6cce45" + ], + "client-request-id": [ + "3bb518b8-3ee1-46a2-bdc7-172f04dab8dc" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "vpZwvuVFhXD0OYiLnCwjODseX071TgEMvI4w2bC7xX8POzJxesYGUVNnDHrmON9hYIdSQhQsD_VIE2dZOItrSFGEQip28iPYE7Bins9SJAXtZMZ-gZZHY3_o12NFdu47.DqWYfczLcMOkYSMTruKBm3fB0rN4WGeFulGN6zUPPJA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "5813747" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -1722,15 +1804,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89f702ec-9f67-4214-9aa1-d8e91bbb1ce2" + "e73a1616-f1a7-4497-b105-11d17879c860" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" ] }, @@ -1749,16 +1831,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14999" ], "x-ms-request-id": [ - "392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + "bafccb88-e648-4544-96d9-6cf56fe3aa4f" ], "x-ms-correlation-request-id": [ - "392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + "bafccb88-e648-4544-96d9-6cf56fe3aa4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200108Z:392e1fa2-b56a-4269-a4a3-f53dcf28eb5e" + "WESTUS2:20171113T180614Z:bafccb88-e648-4544-96d9-6cf56fe3aa4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1849,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:08 GMT" + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -1779,22 +1861,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261cc3da-0b11-4eb0-8597-0f1043a4fbfd" + "7f97b29f-bfa3-488b-921f-f8ab83ee1182" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "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": [ - "340" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,16 +1888,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "bae7acab-d328-448c-b771-ffe07cfbfeec" + "bf2a9577-b682-42d9-ac3e-88e0219c2796" ], "x-ms-correlation-request-id": [ - "bae7acab-d328-448c-b771-ffe07cfbfeec" + "bf2a9577-b682-42d9-ac3e-88e0219c2796" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200109Z:bae7acab-d328-448c-b771-ffe07cfbfeec" + "WESTUS2:20171113T180614Z:bf2a9577-b682-42d9-ac3e-88e0219c2796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,7 +1906,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:08 GMT" + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -1836,22 +1918,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99dee144-368c-4428-8efa-679144b83eba" + "29a3f22f-7f7a-41f3-b61a-1f951a214e12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "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": [ - "340" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1863,16 +1945,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14997" ], "x-ms-request-id": [ - "afe7f820-51fd-466c-bbef-df0128e18a01" + "1d974af8-fdfa-4f32-926d-c26c33d9451e" ], "x-ms-correlation-request-id": [ - "afe7f820-51fd-466c-bbef-df0128e18a01" + "1d974af8-fdfa-4f32-926d-c26c33d9451e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200109Z:afe7f820-51fd-466c-bbef-df0128e18a01" + "WESTUS2:20171113T180614Z:1d974af8-fdfa-4f32-926d-c26c33d9451e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1963,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -1893,22 +1975,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8508fdd5-4445-4059-a661-a33c035c08be" + "73190b48-207e-4bdc-8a23-d29ddf68fc81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "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": [ - "340" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1920,16 +2002,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" + "14996" ], "x-ms-request-id": [ - "3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + "647825b8-560d-4fb0-9c23-7f35caa971ab" ], "x-ms-correlation-request-id": [ - "3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + "647825b8-560d-4fb0-9c23-7f35caa971ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200109Z:3cb0ab2f-ea21-4ffa-bca2-556dab95e4e7" + "WESTUS2:20171113T180614Z:647825b8-560d-4fb0-9c23-7f35caa971ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,7 +2020,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -1950,22 +2032,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05093115-1320-448d-8d6e-2f1706dc7cf0" + "dfac572a-6cbb-4d07-8fe8-d7184361c8d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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 },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "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": [ - "340" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1977,16 +2059,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14986" + "14995" ], "x-ms-request-id": [ - "473fb41a-998c-47fb-8529-5d062959b2e9" + "ed01900d-66ef-48e0-a71e-15337b089b65" ], "x-ms-correlation-request-id": [ - "473fb41a-998c-47fb-8529-5d062959b2e9" + "ed01900d-66ef-48e0-a71e-15337b089b65" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200109Z:473fb41a-998c-47fb-8529-5d062959b2e9" + "WESTUS2:20171113T180614Z:ed01900d-66ef-48e0-a71e-15337b089b65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,7 +2077,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:13 GMT" ] }, "StatusCode": 200 @@ -2007,22 +2089,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcaa0629-30f5-47e7-9818-315cef8d54e8" + "0f6823d2-18a1-4e1e-a0f5-35ef47133283" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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/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/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/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/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/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/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/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/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}", + "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/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/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/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/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/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": [ - "72628" + "73362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2034,16 +2116,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-request-id": [ - "829a5346-f09c-444e-b0d3-81c169584a62" + "3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" ], "x-ms-correlation-request-id": [ - "829a5346-f09c-444e-b0d3-81c169584a62" + "3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200109Z:829a5346-f09c-444e-b0d3-81c169584a62" + "WESTUS2:20171113T180614Z:3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2052,7 +2134,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:14 GMT" ] }, "StatusCode": 200 @@ -2064,19 +2146,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97a5da99-fd2e-44b3-a934-6eaaa51706a6" + "2275152a-a13b-49fd-b721-1cb9cb8a158c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "714" @@ -2091,7 +2173,7 @@ "no-cache" ], "x-ms-request-id": [ - "59eb5318-223d-4aed-bb9c-dc5addeb8b75" + "8299e8da-e962-4d3f-8771-b1dcd2e32837" ], "X-Content-Type-Options": [ "nosniff" @@ -2100,19 +2182,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "7553710f-342b-412a-b9ea-4e1195f69587" + "1be8e03d-8ac6-4042-bd05-eb3be83489a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200110Z:7553710f-342b-412a-b9ea-4e1195f69587" + "WESTUS2:20171113T180615Z:1be8e03d-8ac6-4042-bd05-eb3be83489a0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:14 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2133,19 +2215,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c42a8a9-afee-4a59-a4d7-f3bcfdfe9da4" + "6d30e5a8-5673-4e65-82e1-fcb5dbda7378" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "714" @@ -2160,7 +2242,7 @@ "no-cache" ], "x-ms-request-id": [ - "f777c811-5036-485f-9fc1-f6c293fea015" + "366cfdec-dc21-41e9-b3ae-4f4d88d2a3ea" ], "X-Content-Type-Options": [ "nosniff" @@ -2169,19 +2251,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "f9b4a637-449c-4370-85cc-d08927535494" + "4f567179-3d4b-459d-b5da-8e171eadbe28" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200110Z:f9b4a637-449c-4370-85cc-d08927535494" + "WESTUS2:20171113T180615Z:4f567179-3d4b-459d-b5da-8e171eadbe28" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:09 GMT" + "Mon, 13 Nov 2017 18:06:14 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2199,7 +2281,7 @@ "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2208,19 +2290,19 @@ "254" ], "x-ms-client-request-id": [ - "588e9591-c39c-4215-bdc3-31d7413983d3" + "c3dd5466-bb24-4048-84f9-f276a97cba5f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:10.6414814Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:10.6414814Z\",\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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:15.6546496Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:15.6546496Z\",\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}", "ResponseHeaders": { "Content-Length": [ "686" @@ -2235,7 +2317,7 @@ "no-cache" ], "x-ms-request-id": [ - "cee1f16b-ef77-4489-9a04-d7270c16ad7d" + "1ee1ae47-dc63-48ad-97a2-affb4cedd109" ], "X-Content-Type-Options": [ "nosniff" @@ -2244,19 +2326,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "fe8116b0-09c4-47ff-b5fe-00bcce76b0cc" + "b6484338-e6d4-4146-a9d7-3c650f102675" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200113Z:fe8116b0-09c4-47ff-b5fe-00bcce76b0cc" + "WESTUS2:20171113T180617Z:b6484338-e6d4-4146-a9d7-3c650f102675" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:12 GMT" + "Mon, 13 Nov 2017 18:06:17 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2277,19 +2359,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45a3075a-b4dd-40c3-b8cb-2bdfab5a05fb" + "b66a08ba-eb01-49c3-a9b8-d69ebb6434f1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", "ResponseHeaders": { "Content-Length": [ "702" @@ -2304,7 +2386,7 @@ "no-cache" ], "x-ms-request-id": [ - "2834644f-7867-47c0-b53c-c726e330b57a" + "97767505-8d04-4a26-96a7-3ad8f3d82c3e" ], "X-Content-Type-Options": [ "nosniff" @@ -2313,19 +2395,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-correlation-request-id": [ - "6ba48bec-2001-40a5-981f-efb707f69bc8" + "03f11c0f-1b19-480d-bf5f-c0bf948ae806" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200113Z:6ba48bec-2001-40a5-981f-efb707f69bc8" + "WESTUS2:20171113T180617Z:03f11c0f-1b19-480d-bf5f-c0bf948ae806" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:12 GMT" + "Mon, 13 Nov 2017 18:06:17 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2346,19 +2428,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "734f0885-bfdd-4e36-b7ba-12d654b8b479" + "ee164d77-b045-4ae6-befc-20fddc55b1f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", "ResponseHeaders": { "Content-Length": [ "702" @@ -2373,7 +2455,7 @@ "no-cache" ], "x-ms-request-id": [ - "a7391f68-30cc-44bd-afc7-53beedff4074" + "bdfe6ffa-3188-4e6a-a896-ca11e6191ad7" ], "X-Content-Type-Options": [ "nosniff" @@ -2382,19 +2464,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14988" ], "x-ms-correlation-request-id": [ - "79817c13-478c-49f5-ab11-2bb1da15f316" + "f5d521fa-2953-45e5-b6df-b10fcd03e34f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200117Z:79817c13-478c-49f5-ab11-2bb1da15f316" + "WESTUS2:20171113T180621Z:f5d521fa-2953-45e5-b6df-b10fcd03e34f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:16 GMT" + "Mon, 13 Nov 2017 18:06:20 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2412,7 +2494,7 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"45356bf6-c813-4488-b163-e00edf1d1a50\"\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" @@ -2421,22 +2503,22 @@ "116" ], "x-ms-client-request-id": [ - "3843ffb2-2850-437b-bac5-4ef55ec1941e" + "95e02fc9-b3d1-4fef-833d-e61ac1578b37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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}", + "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": [ - "1257" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2448,19 +2530,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "39e400ab-92f6-4955-9703-c588c7a7c5eb" + "53a2ea54-f410-4026-8589-4e9848a80b84" ], "client-request-id": [ - "467b6aa6-4033-48e6-815d-0a73714625de" + "3cc9db5c-2f19-4b58-b518-76a3446afd1d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "3345TLI4ff1ARDsTS_S2GSnumOP0F4rQY4qbqlMl8PABX6QEyMTTmI_Gb56Rn3jvim_o6Vcb7_Ho3u3kkb-eUac6xN6iCfqHicdttW8eNvb_SoRGx4_4D8eZM5ohRm-Y.iWV1slH3CGlat6iP3sBDo2oR1Wa-1S4uIlZTdQMzZOs" + "12lXA9ZCo_fVJyjDae1ifvbCj6oq5WqoWUu-DAqrDDubnUV_RHcoUuaMy-9e-pCdiNhhplLuK3WEnDHqs2w62A_xRsuJeB8JqeDVpUCxrS3RGk0eVvA7Icrz2viFjV8Z.Puu3jIrKy3XeEHgJmVEMQgFBVhZt-4VsfsZ3p17wXyM" ], "X-Content-Type-Options": [ "nosniff" @@ -2475,7 +2557,7 @@ "*" ], "Duration": [ - "754754" + "776215" ], "Cache-Control": [ "no-cache" @@ -2491,7 +2573,7 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:12 GMT" + "Mon, 13 Nov 2017 18:06:17 GMT" ] }, "StatusCode": 200 @@ -2500,31 +2582,31 @@ "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 \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\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 \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\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 \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\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 \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\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": [ - "2771" + "3221" ], "x-ms-client-request-id": [ - "13c8c43b-13cd-4393-af8c-2c8cdb78140f" + "5343db3a-eb97-48d8-8196-1e35a2a37e3c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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.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\": \"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\": \"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\": \"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\": \"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\": \"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.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\": \"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.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.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\": \"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\": \"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\": \"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}", + "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 \"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.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\": \"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.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\": \"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.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\": \"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.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.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\": \"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.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\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/abenetestwebapp\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"9db70eaf-2910-4bdc-8030-2c1774ff0990\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abenetestwebapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:46:00Z\",\r\n \"keyId\": \"fe2cc7f1-018d-4a62-84af-43fb39f746fa\",\r\n \"startDate\": \"2017-11-08T23: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 \"9db70eaf-2910-4bdc-8030-2c1774ff0990\",\r\n \"https://identity.azure.net/Kx6cfAPeMRpn/kN8Xk5Xc4gYCzJImmkcXMXaUyFET8E=\"\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\": \"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}", "ResponseHeaders": { "Content-Length": [ - "34993" + "44688" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2536,19 +2618,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "U+YMVzOyT/t0EcKWN1svOsrZWxSmfEz8fYuEmDuRH8w=" ], "request-id": [ - "564cdf8d-dee9-4f9f-82d0-49edd06aaf5d" + "b1b86fa9-6358-4a19-a04a-1b39fa53d13d" ], "client-request-id": [ - "6f73c325-4319-4bd7-ad7c-d7f43145064d" + "cf98746a-bfaa-416f-8f53-8bede79edc9f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "0qt88JmCH3PR2lWB4kQOgOo6aO9_CiI7nemLA3VH3HxUwv_n0jATd87Wml0CG1BN_fdfYpPcAiqYZBNj_v1t-DY2OU5TkMXdScohasGNTr0UBCereyKQTHapl3FZPJoy.IZ756BriRRs6k9xT0hi3ABoLSa_qghGPxajwDiyScYM" + "aa9jQ3qJ1R8rp5GarMkkrDfqXmH6L54MJ-6loiGBwzFJB6rn-OIg6tcoeljwwgutgDeQ_Rvhv3hI9PlQYEUFpbj1_eTzjuX_SMvRhJ2IvUcT15_RnMoxMMCjlkDea3td.mGd8-lUAY6CwGsfeykCQsxg-r5EavIMVL48S4Ant9Sg" ], "X-Content-Type-Options": [ "nosniff" @@ -2563,7 +2645,7 @@ "*" ], "Duration": [ - "1398784" + "2140454" ], "Cache-Control": [ "no-cache" @@ -2579,7 +2661,7 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:14 GMT" + "Mon, 13 Nov 2017 18:06:17 GMT" ] }, "StatusCode": 200 @@ -2588,7 +2670,95 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"45356bf6-c813-4488-b163-e00edf1d1a50\"\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": [ + "161" + ], + "x-ms-client-request-id": [ + "1d855f04-f22e-4be6-b646-9c2a495bf8f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.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 \"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": [ + "1348" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + ], + "request-id": [ + "0f5a3a7b-66d2-42b9-8f8a-e4326baec474" + ], + "client-request-id": [ + "ae22c82b-65d7-4667-a34c-f977e27bbd78" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "bmhuWUPctkgoAYzUf8H3PduFrD8DuH_jvyKlpflH_qi1Y2e7qQSjaqAcfY7Elw1n5U0Mp0gFz1w2GkyvuspeJXml5kSG1vRYBS132yAxcAZrLuTmgGSAuakXbkVv7_hK.urU75bwVByxKQzdb1noFz4W8Hr7dhkWQJHG5kHhZ58g" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1341924" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:18 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" @@ -2597,22 +2767,22 @@ "116" ], "x-ms-client-request-id": [ - "1b4569bb-4a6d-4dd1-ac6a-5106aa11dd31" + "74b5b136-6d1a-405c-acb6-e2aa2170ae8c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "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\": \"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}", + "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": [ - "1257" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2624,19 +2794,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "88b73367-5361-4365-9011-56d098a5000b" + "a40d8f9a-c169-4166-b8dd-05772d70ac84" ], "client-request-id": [ - "ea406cdc-b138-4e15-a286-3c7c2741efcf" + "aadcf8f1-9d3e-41a5-aa9d-16a68bbdb9ab" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "b-8gdNYZwI8BItPFltRswKOU12rDUqeLTMj92W86SfYzOqEJImFrD_8nFuZW3UcOQP38B-7piTfJWjCEnnIdqyCAtenps8M-8u-A_Xe3noWWTM39FNAQkY2NqPzMCtNh.OwE4OTgirrUPweDotAEAeVHoZkNOvcY1xfp_l6MVxzs" + "sj1rIrEA9lFsj7lQEA4gb00lr7Z5gb9QgQkXQ1FCCHnm5Jp1jkF0zmJU6OEotRyTogHmYFLfVNqMPw7W9VSEWklqZHSt9hrJdBUHqU9j1cy6YIVaDtvUNxmEp04F-4av.epZCj-vHK3oHn9z0TjRWO_EqdW6PkYZETBtTX-BdPgY" ], "X-Content-Type-Options": [ "nosniff" @@ -2651,7 +2821,7 @@ "*" ], "Duration": [ - "1883242" + "714657" ], "Cache-Control": [ "no-cache" @@ -2667,7 +2837,7 @@ "ASP.NET" ], "Date": [ - "Wed, 01 Nov 2017 20:01:15 GMT" + "Mon, 13 Nov 2017 18:06:22 GMT" ] }, "StatusCode": 200 @@ -2679,22 +2849,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0209b3b-dcd8-4b3d-a048-63e9b946998f" + "633e4f6b-e3d1-45f7-b8e1-afa0b70f96ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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 \"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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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\": \"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}", "ResponseHeaders": { "Content-Length": [ - "42317" + "49977" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2706,7 +2876,7 @@ "no-cache" ], "x-ms-request-id": [ - "0123fc8b-faae-4a83-bf1c-9d0952e167c4" + "6be1c86b-4f01-4920-aa4a-a7755501294f" ], "X-Content-Type-Options": [ "nosniff" @@ -2715,19 +2885,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "74a93c19-f94c-4e99-9945-ca105ee97f15" + "2f230897-4203-44b4-8bc6-69e64b2021c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200113Z:74a93c19-f94c-4e99-9945-ca105ee97f15" + "WESTUS2:20171113T180618Z:2f230897-4203-44b4-8bc6-69e64b2021c1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:12 GMT" + "Mon, 13 Nov 2017 18:06:17 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2748,22 +2918,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2265d61-540c-40b1-bb8e-7acb9953fe86" + "e7d7d036-e119-4bbf-bb37-83f73f893af0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "128313" + "128457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2775,214 +2945,7 @@ "no-cache" ], "x-ms-request-id": [ - "68117064-50f3-4f44-b681-c6460231dc2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "ed962a64-a0cd-47a9-a33b-56ddadcc6b7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171101T200114Z:ed962a64-a0cd-47a9-a33b-56ddadcc6b7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:14 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'45356bf6-c813-4488-b163-e00edf1d1a50'&api-version=2015-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzQ1MzU2YmY2LWM4MTMtNDQ4OC1iMTYzLWUwMGVkZjFkMWE1MCcmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a533f83-2464-418b-84ad-dbb4462ddc89" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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}", - "ResponseHeaders": { - "Content-Length": [ - "732" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1b7c40b1-e9c0-4d61-a2a8-d350701f53bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "b2243214-a6ef-4cf5-a095-a5be366359d3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171101T200115Z:b2243214-a6ef-4cf5-a095-a5be366359d3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:14 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'45356bf6-c813-4488-b163-e00edf1d1a50'&api-version=2015-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzQ1MzU2YmY2LWM4MTMtNDQ4OC1iMTYzLWUwMGVkZjFkMWE1MCcmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09f4391c-e7a5-4878-8a9f-43196cf543bc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a9a98a60-8cc8-4127-97d8-2c60ad40eba8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "6abcd749-779a-4005-961e-b8458b44bbee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171101T200119Z:6abcd749-779a-4005-961e-b8458b44bbee" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 01 Nov 2017 20:01:18 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef74b422-1f57-41d9-8eef-d8e956927fbf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2115.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "128313" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb299503-d569-4577-b718-f9342b89a88f" + "86228f4a-4530-4806-99fa-7cf5826be393" ], "X-Content-Type-Options": [ "nosniff" @@ -2994,16 +2957,154 @@ "14991" ], "x-ms-correlation-request-id": [ - "5d06aa4a-c0ab-4f6b-a412-9613b118a4fe" + "96f09bbd-5f3b-44fe-a4c3-ac7b2e0369ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200115Z:5d06aa4a-c0ab-4f6b-a412-9613b118a4fe" + "WESTUS2:20171113T180618Z:96f09bbd-5f3b-44fe-a4c3-ac7b2e0369ac" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:14 GMT" + "Mon, 13 Nov 2017 18:06:17 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzZmNThhNzcwLWMwNmUtNDAxMi1iOWY5LWU1NDc5YzAzZDQzZicmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea1ffb2-9897-46e4-8008-f47e7fef52fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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/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}", + "ResponseHeaders": { + "Content-Length": [ + "1505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b6f59ce-5c18-46d3-af48-373f324eeb90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "9e6442db-e3c1-476b-bf77-c5a811a787b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T180619Z:9e6442db-e3c1-476b-bf77-c5a811a787b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:18 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/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJzZmNThhNzcwLWMwNmUtNDAxMi1iOWY5LWU1NDc5YzAzZDQzZicmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5a8cb31-08eb-4113-9f22-c1ab3bf5b07f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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/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}", + "ResponseHeaders": { + "Content-Length": [ + "784" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dad856c-a60d-490e-bf26-eded860f6e8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "71fd2796-418b-4ad9-a1c7-a3049c1dcaa6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T180622Z:71fd2796-418b-4ad9-a1c7-a3049c1dcaa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3024,22 +3125,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9509e0d-2e0f-49c9-8070-b926c067a709" + "caeb7e4d-673e-473d-ac31-d994628a9820" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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 --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:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/deployments/*\",\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:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-05-03T18:44:05.2089574Z\",\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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "128313" + "128457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3051,7 +3152,7 @@ "no-cache" ], "x-ms-request-id": [ - "a0761bf0-f82d-4ef0-b783-012c797fd763" + "f14a44b7-b031-4746-8515-6c6fa7ceaeab" ], "X-Content-Type-Options": [ "nosniff" @@ -3060,19 +3161,88 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-correlation-request-id": [ - "29b5f7f9-3bd7-4c2e-90b8-4ffba97df487" + "82f4a776-5182-40e7-a0d4-11d97678b847" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200119Z:29b5f7f9-3bd7-4c2e-90b8-4ffba97df487" + "WESTUS2:20171113T180619Z:82f4a776-5182-40e7-a0d4-11d97678b847" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:18 GMT" + "Mon, 13 Nov 2017 18:06:18 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e9d8b61-1ed9-4fbb-bc54-6b0591252b39" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ + "127754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "006605f5-1564-4707-a4a5-48d362d48a32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "128a18d8-6d88-477f-bcad-d7a16a6ad946" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T180622Z:128a18d8-6d88-477f-bcad-d7a16a6ad946" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 18:06:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3093,19 +3263,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79582cad-1623-4fb1-9dee-7802aed32126" + "2b7cac79-a4d6-4b15-949e-1659d8273e72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:12.6245482Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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}", "ResponseHeaders": { "Content-Length": [ "720" @@ -3120,7 +3290,7 @@ "no-cache" ], "x-ms-request-id": [ - "50363e55-f719-403d-a90e-0ac513d97e5c" + "298b4ea2-16cb-4d61-9cb8-b838eb84fe98" ], "X-Content-Type-Options": [ "nosniff" @@ -3129,19 +3299,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "9f84d6cf-2fda-45f4-be56-8613dd6b86e7" + "8fddb254-b384-4be6-a9f2-5dc8e561a7a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200117Z:9f84d6cf-2fda-45f4-be56-8613dd6b86e7" + "WESTUS2:20171113T180620Z:8fddb254-b384-4be6-a9f2-5dc8e561a7a8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:16 GMT" + "Mon, 13 Nov 2017 18:06:20 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3162,19 +3332,19 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b9407b6-c415-452c-961a-327c913f506e" + "cbd109e2-84bc-4f07-bae0-1c3097041890" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2115.0", + "FxVersion/4.7.2556.0", "OSName/Windows10Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-01T19:48:00.5007505Z\",\r\n \"updatedOn\": \"2017-11-01T20:01:01.0797248Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", "ResponseHeaders": { "Content-Length": [ "702" @@ -3189,7 +3359,7 @@ "no-cache" ], "x-ms-request-id": [ - "b07974d4-6bb8-45c9-956e-06457a91c0bf" + "e08af311-7033-4a1c-b8d8-0a6449ff33b7" ], "X-Content-Type-Options": [ "nosniff" @@ -3198,19 +3368,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "9b686789-ea75-4c43-9cc8-895113953e69" + "e9aa2df1-015e-4f70-82c4-6a2042032c42" ], "x-ms-routing-request-id": [ - "WESTUS2:20171101T200118Z:9b686789-ea75-4c43-9cc8-895113953e69" + "WESTUS2:20171113T180622Z:e9aa2df1-015e-4f70-82c4-6a2042032c42" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 01 Nov 2017 20:01:17 GMT" + "Mon, 13 Nov 2017 18:06:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" From f0fc0585e3e285fc5565d4b6d48e2c7f592d71ad Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Mon, 13 Nov 2017 11:29:34 -0800 Subject: [PATCH 33/37] update test --- .../ScenarioTests/RoleAssignmentTests.ps1 | 20 +- .../RaPropertiesValidation.json | 1022 +++++++++-------- 2 files changed, 529 insertions(+), 513 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index 860fdf7a12..8afaf8b938 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -386,21 +386,25 @@ Tests verifies creation and validation of RoleAssignment properties for not null function Test-RaPropertiesValidation { # Setup - $definitionName = 'CustomRole Tests Role' - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleDefinitionNames.Enqueue("8D7DD69E-9AE2-44A1-94D8-F7BC8E12645E") - New-AzureRmRoleDefinition -InputFile .\Resources\NewRoleDefinition.json $users = Get-AzureRmADUser | Select-Object -First 1 -Wait $subscription = Get-AzureRmSubscription - $resourceGroups = Get-AzureRmResourceGroup | Select-Object -Last 1 -Wait $scope = '/subscriptions/'+$subscription[0].Id - Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." - $rd = Get-AzureRmRoleDefinition -Name $definitionName + $roleDef = Get-AzureRmRoleDefinition -Name "Reader" + $roleDef.Id = $null + $roleDef.Name = "Custom Reader Test" + $roleDef.Actions.Add("Microsoft.ClassicCompute/virtualMachines/restart/action") + $roleDef.Description = "Read, monitor and restart virtual machines" + $roleDef.AssignableScopes[0] = "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f" + + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleDefinitionNames.Enqueue("032F61D2-ED09-40C9-8657-26A273DA7BAE") + New-AzureRmRoleDefinition -Role $roleDef + $rd = Get-AzureRmRoleDefinition -Name "Custom Reader Test" # Test [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("fa1a4d3b-2cca-406b-8956-6b6b32377641") $newAssignment = New-AzureRmRoleAssignment ` -ObjectId $users[0].Id.Guid ` - -RoleDefinitionName $definitionName ` + -RoleDefinitionName $roleDef.Name ` -Scope $scope $newAssignment.Scope = $scope.toUpper() @@ -418,7 +422,7 @@ function Test-RaPropertiesValidation # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $roleDef.Name $newAssignment.RoleDefinitionName Assert-AreEqual $scope $newAssignment.Scope Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName 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 ca3cd02fe5..863606f8d5 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 @@ -1,80 +1,5 @@ { "Entries": [ - { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"description\": \"Test role\",\r\n \"type\": \"CustomRole\",\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 \"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": [ - "462" - ], - "x-ms-client-request-id": [ - "021d7a3e-a3d1-4165-8a42-b911886ae058" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "702" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0132c1bd-10fd-434f-b3c6-18b04afdb6ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "54d4a96f-a3a3-4e7c-a23d-6e7443556c35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171113T180607Z:54d4a96f-a3a3-4e7c-a23d-6e7443556c35" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 13 Nov 2017 18:06:07 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 201 - }, { "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/users?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi91c2Vycz9hcGktdmVyc2lvbj0xLjY=", @@ -82,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53f352fe-d87b-4e65-bba9-073f6701c82d" + "1a12e3f3-1946-44cf-b885-3aae25e263a7" ], "accept-language": [ "en-US" @@ -109,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" + "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" ], "request-id": [ - "3140e757-8d48-4c56-9683-d062b946f0ee" + "11005bb2-5406-41af-bce9-5de9a09cf4e0" ], "client-request-id": [ - "2f7c42c3-6fa8-4e9c-82a8-7785c5b20b2a" + "3cf9b223-0c4f-46a9-9bd5-d823e01d40fb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "YWshydGxkWaGZCcaeF6m4iuoop-OculixDMGMRFvXZn44vzNwwL_YDQ3M42k6YNxWvXW0a8AP8SQB00lfQ8fdyaj4h6sKIFV3JZTiegXejxElbjXvTvKYEs8teabeDbG.9ZHFOjCT6ZocwTHnhNAh2nFe5bTn2oTb7OHkBuCuRY4" + "Lj55b5vs_O2CBUTwFQumG124pNsBUUkgPhJ8nnSPirWny98xf7S5q31EQG8PKNViCAW1Ah7udJjeACe0J15kY9nbhiQEeO2DhjvOJpIBQww4YmKwPsf2yMII8iQjz8Aq.GP-iX3pecWubtXekUZw0VGG_SaEWHo7c268IjA4BLuE" ], "X-Content-Type-Options": [ "nosniff" @@ -136,7 +61,7 @@ "*" ], "Duration": [ - "2175723" + "1323131" ], "Cache-Control": [ "no-cache" @@ -152,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:07 GMT" + "Mon, 13 Nov 2017 19:25:09 GMT" ] }, "StatusCode": 200 @@ -164,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50d9e516-ab1d-4d3f-bc96-7d6e034cd491" + "4b9af108-21bc-4423-9ff0-3974c57588fe" ], "accept-language": [ "en-US" @@ -191,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" ], "request-id": [ - "e0795c06-61aa-43c5-ae2c-a5e77647a1b2" + "924a74d8-af6b-4f53-8c3d-001e897c3a8e" ], "client-request-id": [ - "e22b2d44-118b-4e43-b123-8d71f7296127" + "59739bf6-3b61-46e4-86e1-167fa4fc8461" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xYMpO7IfG_WGN47vGp-JdYQSM6GO87toE5JhW-6Mi2vS3qUxuB-xp9ualSfaGy6r56EkAoTR5skghmUeeepjYbUYOJYX1yrg3kA-hRYEC6rUrLjb4uJjB2Wu49vxRLq3.esqd8AA3c_zw9dgAjLeTutbC9NrJutBab3AWi7Sx5qE" + "lpj70jFXNYRVHPztzlL2sal9if743q9MSATqyz8_d1Aamg7SqRgslRrbHQmBF02I6z7qw9zOnNQmEP6UomVnwjLRA1t9DmwL_Kc2myi601ms9nQMi58X56NJpwlr7Jc6.hYVAo1pAl7n4FNFeHqF6AHauv34ITOedTD9G9mklI-w" ], "X-Content-Type-Options": [ "nosniff" @@ -218,7 +143,7 @@ "*" ], "Duration": [ - "6111625" + "1171836" ], "Cache-Control": [ "no-cache" @@ -234,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:08 GMT" + "Mon, 13 Nov 2017 19:25:10 GMT" ] }, "StatusCode": 200 @@ -246,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b711d82-4a0e-4b2d-9dc9-6f1d59b92dac" + "a6c5ce7f-8b84-405a-80c2-cc4e6c548c5d" ], "accept-language": [ "en-US" @@ -273,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" ], "request-id": [ - "d812549f-b273-40e7-b8de-f9f7053e6339" + "e2ea715e-c568-45d2-9695-081d74a8d77d" ], "client-request-id": [ - "abf18810-30e7-4c76-b5da-1f682c36a3b9" + "8ef40ce8-dea5-471e-bbe1-59e713093af4" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "3CjFljJLblfz7tC0k1yAkZhDMh4Q4rl4MUr_AQXThKFK-Y8Z4FBlJfBO0DkO3dkq5AjLjhgbwBLp5afHjn-XrFBKfyGhxKURp64l5Cnee4F8nqDK1qq9xyAdXAPkpyRO.ckKCQRls639QTINssLGwTeDAp0SEzpWCpqIJHzAst00" + "pf5GZe8NiHDac14k_QL3-ffHBeeycYjEkove7qa9veZvTv8blhWyHY1pN3-P5oMi1-6jIUc4XsWpFyWQaA3LhRbLVt_qZgRvsRT1u-P84zUL1nBlTamqKIsSS_AZruQZ.753Ld0kJQDG1beVVoBBprMlJL2YVarlNQtfeEdWaKSs" ], "X-Content-Type-Options": [ "nosniff" @@ -300,7 +225,7 @@ "*" ], "Duration": [ - "1375950" + "2929270" ], "Cache-Control": [ "no-cache" @@ -316,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:08 GMT" + "Mon, 13 Nov 2017 19:25:10 GMT" ] }, "StatusCode": 200 @@ -328,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34d84046-9c95-40f6-b286-c96c30e3ec4b" + "f696b002-ab19-43df-bfa4-12705f5a4fe9" ], "accept-language": [ "en-US" @@ -355,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" ], "request-id": [ - "37fb2a20-adee-4385-bee8-fe9002ab979e" + "d0e2bfc8-22e4-4717-af65-a454c905b279" ], "client-request-id": [ - "34b8de47-e272-43b2-aeb0-198427e3235c" + "f0270d59-e1e1-483e-9892-39577e3ff93d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "2Ert0z8RpmZza7z0v9EoW1j-TRoBc3mJbO8qXujOym-iW7WFLML4LTFKYFYwrwy-JesAsB094Adb5fv6c1An2yGqIIg5u5OY0sr75LYYRy1VWO3mv29VxyG7DxOuB9_Q.1VL9vClHBDWW3cJI4sj3NCn-fLh2Stdm4G8itjfDkpM" + "CSpx96O_V82PHGSdDDeJ7tPGVgQm0WwzE1RIZqX9Zf5UninQrM2D9iIuzmIBld4Q7tPDoiiyQbnhlS37JoBDkVB80AyFz45Ygcnf930n3vJSEUypG8K6NB7rIO3lnfin.iTZPbYidxzRQNI5G7L-ZV3w7NxpSm4LyTd17FuqkZb8" ], "X-Content-Type-Options": [ "nosniff" @@ -382,7 +307,7 @@ "*" ], "Duration": [ - "2036237" + "1530760" ], "Cache-Control": [ "no-cache" @@ -398,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:08 GMT" + "Mon, 13 Nov 2017 19:25:10 GMT" ] }, "StatusCode": 200 @@ -410,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6764c37d-989a-4154-bca4-cbea50731f1a" + "3fcd5c21-77ae-49c8-aea2-8b6ca134c356" ], "accept-language": [ "en-US" @@ -437,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "8320a265-e36d-4fc9-bde3-1ef4ddc7b998" + "49bc401c-6681-476f-83d8-48eee09434eb" ], "client-request-id": [ - "f832e8f3-291a-47ce-be9c-37eeb26c4281" + "706ec35f-a8a8-4f7a-9789-c8432b9749e5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "X8y6B_Y-QABTUWOakz5KNsauA5WVCsdh0H3bg5PD2rau021YCfNYCHezL56mct6DiX1X0ODi5xUWyI5YeNPQTP3-kAlGeX2vV1Inec78I4PKJy5psbBybgfArpcFDx8Q.h8aanlIPKDyLRM2ZK1iNuBq-jKThhWMB00SZtAYcJmA" + "dqvaEt4dWQM9YBpBIQw0mZQ3rDVbh5GuGGrGG48uCCLbRJO4IaeWc8ycsbXwwRjpZ24wNyqzrl1SbCk8aeLA1wf6ENvnxWtPXZpH1a37Drktj3hhtTrFsBe4zLcjXi9F.QWyMbthAYUPWb6WbJLWzdndpPruVKXkz757ETXt8niQ" ], "X-Content-Type-Options": [ "nosniff" @@ -464,7 +389,7 @@ "*" ], "Duration": [ - "1280802" + "2121122" ], "Cache-Control": [ "no-cache" @@ -480,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:09 GMT" + "Mon, 13 Nov 2017 19:25:11 GMT" ] }, "StatusCode": 200 @@ -492,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a560980-5dcc-43be-bb7c-66166843cd1a" + "baa0c284-2d48-4d1a-9b73-714901588473" ], "accept-language": [ "en-US" @@ -519,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "812b7a5c-e79d-47cd-8323-5da6a81d720c" + "30e060cb-d809-428c-bbaa-dc7d0d5a328b" ], "client-request-id": [ - "26674e6f-f1c8-46e4-afa7-1d38f7c12565" + "676446d5-f369-4f92-b38e-6bc19aea6739" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "QRTOv5IJ5miVgRIvF-cJoS0yz3p8rqXjp66-qCaFK-cGYIzO1-YB07h5DSFsNXr4bOx5m5SWgHCyDiN-z0plGj_E3H7zdMPO1rSxBKeelWGJMUq8xfjn7UfX2t4EPjk4.WE0v8rtBo_dIEIQzfvgiQHrzT7JnRZCSdN6GlQTR97s" + "LoHPS8ifjgkWAaBUtFDdcldaluvwPk669VKed1HYYYeE-7aHKdJbQ4ZHg402Wiij2UjxdSh79Iq-C0pSYpYkXxy_Rx52AF5qj-ARfLf7AsImdAZ13JnQ4S1bXI1Q5oZH.Ov_ugphrd8rumCVPKZNItmYaN1FzX0cI14fu8j4uEYQ" ], "X-Content-Type-Options": [ "nosniff" @@ -546,7 +471,7 @@ "*" ], "Duration": [ - "1605006" + "1422398" ], "Cache-Control": [ "no-cache" @@ -562,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:09 GMT" + "Mon, 13 Nov 2017 19:25:11 GMT" ] }, "StatusCode": 200 @@ -574,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f605ae40-689e-45b6-b07c-9238c7b94ee3" + "a938f80a-3d1f-4e4d-a3ba-670f2f689a7e" ], "accept-language": [ "en-US" @@ -601,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=" ], "request-id": [ - "7f147a93-c7a2-48bf-9d42-0e660e9e9351" + "4aeb1abe-156f-4294-9e89-b6fe130bee59" ], "client-request-id": [ - "9981da1e-6054-4dcc-9522-d66ad82f480a" + "a2ccf4d1-f42b-41d2-8d27-7adde545e7eb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "YofRqqyPam2kuwbzUE9QWEpfiNsoMhcS98rb3Y4gUd-UEQm9x0R0uUlJNkcKYm2hFfb5XVdddRdETnYFlQzSsMJqLMlr-itsCMn96rrRUnlr6aqju3XfrM1CLiEuX7V0.UfFLnG6TeswWn8uO411eyNghZwCBD_ATlbXttf4h9co" + "FJKu8wVbbmA7nD59r8Zr7kP3s4LA_iC9IG71RcO_0KHX-VsP4O15JgG3_KCsaNDww8aN8YkDOsFvI5bdUej_JZ90LGKZ6J6YlC38Gc11s6dlt1aWVzM0AhFaErxnayqK.soElw0pzx_h-tzCpnvAKL25UrNTimVdBjqzdzvyCECE" ], "X-Content-Type-Options": [ "nosniff" @@ -628,7 +553,7 @@ "*" ], "Duration": [ - "1270087" + "2587950" ], "Cache-Control": [ "no-cache" @@ -644,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:09 GMT" + "Mon, 13 Nov 2017 19:25:11 GMT" ] }, "StatusCode": 200 @@ -656,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ec3bbb2-5047-4c7e-878c-48e49a2e49a3" + "221b6a5e-2375-46eb-870d-103c63584e29" ], "accept-language": [ "en-US" @@ -683,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" ], "request-id": [ - "91c09c0f-43b0-40c9-a85d-f8a8ad1d681a" + "b1915b63-8480-4ea5-b2a5-98d9ac007080" ], "client-request-id": [ - "5d02629f-ea2f-46ad-9a3a-3990e837839a" + "aa7dfeb1-ce1c-4376-8bb3-d914ab40cc06" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "U2_eRzX_52F7IzkpEajZrQBl6c2FTLlZSCHL2gVMiclRS0qtPJs-u4D9AJGW9KfomORUEguMV6tcKU7DCFuTHJcSdD6e1mOIgISczdkIBdVreJv-YZWSBfb5p_qyisbb.eBtybU-yFS7N2Vx6WaD7nrmeiQVTIAyvSTYhWbmpLaw" + "PXYGZ63YFQ9oiKMD98n_Unn4AT5heaaDQz8UlTiW4P1YIpcb76MbTmGudvFzh78VzutRMsLKphdjpxFidvnoWtZCGh3P-PfP8MukSBmJqrKrTc8E0PnxZ2SbEeHt1kSx.GlAl_U4zqUBAlTyJFu_kyOXJgXOozgfn7mXgk_tsHNQ" ], "X-Content-Type-Options": [ "nosniff" @@ -710,7 +635,7 @@ "*" ], "Duration": [ - "1410060" + "1297755" ], "Cache-Control": [ "no-cache" @@ -726,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:09 GMT" + "Mon, 13 Nov 2017 19:25:12 GMT" ] }, "StatusCode": 200 @@ -738,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d0f4b22-5eee-4708-8043-164445f6db60" + "f0afcacc-5def-4fd5-9c59-f6d6ca289adb" ], "accept-language": [ "en-US" @@ -765,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" ], "request-id": [ - "3b0f353a-561e-480a-afbb-86ca71d1d714" + "53a7e0ca-fe87-4208-8142-ba8cd4a5fc4b" ], "client-request-id": [ - "997f637e-030e-46ad-b66b-7d77a8856a56" + "9d683d2f-8f0f-4152-8107-a90e77cce24b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LDt5ALeRjaI4OUnqVYNh0fC7alb2Y7rysPPTP7H1heHIVPDAQ-cipK8p-WPIOH2RTV46T4wFDkg3XPJ-wzcMfPuV4osrTk70xoTU5_DPGqTuiMO48MRK-ASZmnQXLPtR.UDW6nY5u79Q_h-VJMbOibcbOfJ88juK8T6jpp5aTMKk" + "6ZOrSI1SwIihqOncxvfIgjjuEDdFF-Bt3LOW1AZGurJXjzuSmds9gdrB27XDBBYW57GTvGzOwMC_UedVRbU4ZNWotxcipPS1_IU5LuiNHYecIlyCWn_mKiI97Lia6lij.Q_-MZKP4vNDnoZ6WQWmlhb7_t9Y_6ZepAb85C-c_qAQ" ], "X-Content-Type-Options": [ "nosniff" @@ -792,7 +717,7 @@ "*" ], "Duration": [ - "1173019" + "1972868" ], "Cache-Control": [ "no-cache" @@ -808,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:09 GMT" + "Mon, 13 Nov 2017 19:25:12 GMT" ] }, "StatusCode": 200 @@ -820,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5d72aa-0958-4fc1-9e1f-6d65dc59a331" + "2c1038cf-ed24-4e5d-be92-8d909b644db1" ], "accept-language": [ "en-US" @@ -850,16 +775,16 @@ "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "15d38cfe-7a17-4d7f-a1c9-1f362f33cd11" + "998a69d4-f79b-4c9b-ae04-98959cd3bfed" ], "client-request-id": [ - "d76bc112-cf7f-479d-a6c8-b4d8dfaea4cb" + "24e00c25-cab4-4e32-b879-336204514754" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "nLFUhrFULFlu8E9xOqxP38XiYHsQllNe9nCforDrBjax_dMohQmeLZMfizhv-yAmULkGFDbbGiTTYhW-6iJqsgJ2THqRfc-MRUJsTqWOXfLeJACPAmKdvBB0GlCvI5wZ.D9Pk_lEcBbi0tbuh5mJFyqPEGyDucyZWeoiJavwd0PI" + "NmWlTTjHemJ6iKTMler9o671Wgc8agMsNiXG4w3HtoJqWMlbbRIbCd3pKhOtp6kds6YgEj0lZSB5SPezkJM-6oTx6WbldRsgpyCLp69ztKQB0K9Ndd2BIBBS8QnIDIZ1.DqicjOsWk6SpEJ0sHpu1k2nYU0SQQQlo0i-eJblcuns" ], "X-Content-Type-Options": [ "nosniff" @@ -874,7 +799,7 @@ "*" ], "Duration": [ - "2294604" + "1115834" ], "Cache-Control": [ "no-cache" @@ -890,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:10 GMT" + "Mon, 13 Nov 2017 19:25:12 GMT" ] }, "StatusCode": 200 @@ -902,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ec3567-6c87-41ac-bb4a-7f473c93b9ab" + "a6d97d98-90a1-4fdc-95c4-399ac06e49ce" ], "accept-language": [ "en-US" @@ -929,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" + "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" ], "request-id": [ - "99efbc73-4c4a-4bd4-bcab-8e02efd4894a" + "eee21afc-effd-45f6-92df-ce3f0595e303" ], "client-request-id": [ - "a1ea9543-bb3c-4f9c-92cc-58b9c3611a26" + "d605d534-f809-4ddb-9c1b-cb20f0b6eeeb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "YJxATR5SIDL56StL9PGsGfbWhXtrt6geb4ryfWQC3k1Ptd8upVoq6DZsBQyAX-igGNuJDsLH8yfsRjx_mVLkSbLPxq-7g_esI0Nwx2F-5NHnQgJlvc5aCtLGcc1TzERu.4ve6t_MQo25k7_rzNcfcyTYcnSh5HLSfwALDpnQGCmM" + "F-pwZI75aNFspiZ39CvuJUfLbF5fWXZ4HT_ygAKnyUzMSTtyB6wulKL4yxgV-pjsOENKnlf5WlVkmuYDnSronQ4vXtVUocL13Vl9zmxOH6tk-V2qRh_BZJ24_qn9tAC4.N0lDlc5gqwM-nsD-vOwk4ePECLmUpAz3agybjo71KjQ" ], "X-Content-Type-Options": [ "nosniff" @@ -956,7 +881,7 @@ "*" ], "Duration": [ - "1657660" + "1373045" ], "Cache-Control": [ "no-cache" @@ -972,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:10 GMT" + "Mon, 13 Nov 2017 19:25:12 GMT" ] }, "StatusCode": 200 @@ -984,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f0d9518-f1da-485b-b542-19224a73cc1c" + "c251e522-c205-4bfe-95ac-5dc5c6134656" ], "accept-language": [ "en-US" @@ -1011,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "vrocKICWpWBXlmHs3RTmaqrB9kYlG5N8rcTCadnP9jw=" + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" ], "request-id": [ - "5a3d7adf-c047-4ee2-8f6c-eade4dba2718" + "9cb96695-9ec5-4781-9ef6-140d9bfe7b1a" ], "client-request-id": [ - "c99ad445-4fab-4b9e-816a-4d7352c70f15" + "bba5779b-090e-4afb-a63f-3f91a8e4b66a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pD0vSbuTeAEIZ6Da36rso6S_32b80IgU4_FyAswOjSMzOyjusc_N4hJzqmx6g5FzcD4dF7UosaZSVf81KPKqjLMlysvX3hfs7iPyOZBOvhvpB7tpRL5zBH-kq813ceFO.D0i4BtKFrVxbtjoPQ5kjWl5JwwZnzV7lYLB5nJ1cHrg" + "bZuvY3aqLJj1lyr2ffwoOXZTVAH74QXnQ1Sa0Ucj1NEJItCRE8Q60vS6X6cyPrTJoPtyjjuJrdnq1FMpUdApuF_gAetJJrKgr5X8aVmSdyOCEf-xqPWCQVjRWKNUC3Z5.EFMgb5LzyNNt1b-K4m8-FUC5xmNDyk1o6VvO5PCfUjM" ], "X-Content-Type-Options": [ "nosniff" @@ -1038,7 +963,7 @@ "*" ], "Duration": [ - "1512794" + "1787999" ], "Cache-Control": [ "no-cache" @@ -1054,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:10 GMT" + "Mon, 13 Nov 2017 19:25:13 GMT" ] }, "StatusCode": 200 @@ -1066,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cae9b2f-e06f-4283-a209-e743ebd6d9ff" + "6dc3702b-fd37-4cd0-a147-9b0b813ac5c5" ], "accept-language": [ "en-US" @@ -1093,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "Dv72AcCemnmm/GYguwEfXSa0gt5rEWvxyBbksyTbSc4=" ], "request-id": [ - "1c6fa5e7-6109-4483-8ee5-d65350b0e5f6" + "47701818-f432-43a5-a1bc-bec3aa6930be" ], "client-request-id": [ - "44dd957a-2d6c-4dcc-80a8-8cbe426a2580" + "3a13cd19-4ecd-46ea-b4c8-869931a90093" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "J1e0P3HA4yJGDsiO7g3LGN_HEGobcHFy5ngyqVe89W5lOOIYOfLgyWx7nj312B4_EF8VMmb9dFx7sjOhxcAWeZ29jEDzdvFE6qMfTM9naL3HFpSWe1gs74MTAyENH3Rc.heOm2eglXvSO24LGus7hojQUKkD7s9z2bLh316DGAi0" + "FqlX2rd0RgJW6YVRCH4pqDGXOxW2JGpUWGOUAvSeD3tajtq5WzktN1dzHgNLd_E6WFGlSFQxcr4MzOtFWPoq4c-8wDAD-BZ0fE65Ey3OVlOYZUVMRdTwkOuyu0BxT_5X.j7SQtQ_4IdFhV-tm9wRiCqpQa6ZvDsqRZ8Y-ZadqTyk" ], "X-Content-Type-Options": [ "nosniff" @@ -1120,7 +1045,7 @@ "*" ], "Duration": [ - "1936120" + "1263046" ], "Cache-Control": [ "no-cache" @@ -1136,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:10 GMT" + "Mon, 13 Nov 2017 19:25:13 GMT" ] }, "StatusCode": 200 @@ -1148,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22888fe5-8f47-4ae5-8d20-d2b0d86d859e" + "0cad2dbf-d75d-4e87-911c-45091b1873de" ], "accept-language": [ "en-US" @@ -1175,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "7c889e0b-76e7-4c38-8d1e-4b0a2e65dec7" + "f42ed9f3-ccea-4154-b99b-71423f080680" ], "client-request-id": [ - "58d6f378-0c01-4e11-8a8e-cf650a36ad47" + "b851f224-cc0b-4424-874f-e0640e091c36" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uLrZ8I_5EsfNNoJwLmZWLOnOA8N_dRukrUqlUiUH8mgK79HHTFt5WxNhQ-Cxz8WsMxtOGAqHnzHSVvjzj-8Dxbn94K1eKpOEfGCcL1TXXHonHzwDm_gHmL9E-YTQ6fuw.-7EfH8LRWs4at7KjM2NRClf5OG4cZR8usA9uR67jX2I" + "aEwSGzadjnMIUUdaJH9GPi7dCDo-ax_WQ1VSmM-yUVPtyHmSbF2Y9jG9E_YuCgLh2JDGmr90x_xiX8bqPPdFDMeCVAqBvcBKt8KUKgeyuDdSwKMGws0IDHkFQVRtfIDp.ExOH1AOnTIBe_6KLV-c_4NNSicwSXUtZ3OYK9JNn7qc" ], "X-Content-Type-Options": [ "nosniff" @@ -1202,7 +1127,7 @@ "*" ], "Duration": [ - "2151265" + "1126095" ], "Cache-Control": [ "no-cache" @@ -1218,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:11 GMT" + "Mon, 13 Nov 2017 19:25:13 GMT" ] }, "StatusCode": 200 @@ -1230,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d12833e2-390a-4631-aa93-eb2a1aea1e5c" + "78e67f90-2f64-4bad-8631-eb04bf8ff26d" ], "accept-language": [ "en-US" @@ -1257,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=" ], "request-id": [ - "addf6e5b-090a-4850-89dd-f6a3e0a06738" + "66edf571-420d-4a17-b690-c29be2781108" ], "client-request-id": [ - "f6fae6a0-3e28-4d54-b213-2d35e0af4260" + "6b152798-0536-4970-9111-97efac48abc0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "c0YWV2UOnTuztfWI5Vjny02wc2d1xk8Pbmui6RthZgfI1JfJYLpzFXF6YlpHJhR4FePlYfqG4jMRIBtJCw70mgcyYWbBXQ5gdWie3p-4LsQFquER52nzGBkW-yI7PdVD.7S3VVg4RKdPxAoPrrzFHLWX2Qt9ewe18Q3jgJudftxU" + "3RobsGip_-fuGdy3ItJyaLXtiMmBpo937SRCAsXtMI952s3d8F4eEIL0qA5WzTLBR2dm32tkyFvfBImlaDwSpOwamCdb1-D75Bgrz6U69bvU9fPnVj7jy2Udfg1w5M3e.gBS5oV_-_FHNk8NT_nBf33dWWEp4ycOL0SXjM1jlH4s" ], "X-Content-Type-Options": [ "nosniff" @@ -1284,7 +1209,7 @@ "*" ], "Duration": [ - "3222289" + "1198621" ], "Cache-Control": [ "no-cache" @@ -1300,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:11 GMT" + "Mon, 13 Nov 2017 19:25:13 GMT" ] }, "StatusCode": 200 @@ -1312,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573027f8-173b-4846-bf65-fa6956b9ef74" + "399d0093-1418-4401-a20d-4c478e852c13" ], "accept-language": [ "en-US" @@ -1339,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "e8e5b469-fd19-4cf8-a5dc-04ecd157efb1" + "175fd8c6-cb13-42c2-918e-f34f3991355b" ], "client-request-id": [ - "fba45191-e39f-415b-9f8e-40f7e4936ae2" + "547a895a-68e8-4523-9139-165daafad1f0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "A4mY60qxEVNTmlJP739wGK5zxEhHD3PWPfX7Ujh7MD74K7XRH9fsuZH8H5qOxUcWPFvh9177OcVJBw3aTAsFT2g_divYfclIknH8PJ6Ar4n48KWshnjIFxgKubvumf3N.lrOq4DYI0rjgscOXKVfzvamwHty_eg7XWMgBuOTWZ9Y" + "9_SwaQVrYEzLiBcJ4od--02AbgSEWT7-7idsxcTQNmMp7A2UdWTYYAa9uPqL_8Dpkuyq9PTNezrmYFmJbicusZmymLjpPfMB8jBJIC72mSNomnyWJYk8mrgLA5BaqRwJ.V8xYCjK2n4D3uYO2xLZ2qkYSVj0a-2x2q5oqCfUX0Ns" ], "X-Content-Type-Options": [ "nosniff" @@ -1366,7 +1291,7 @@ "*" ], "Duration": [ - "1295254" + "1200674" ], "Cache-Control": [ "no-cache" @@ -1382,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:11 GMT" + "Mon, 13 Nov 2017 19:25:14 GMT" ] }, "StatusCode": 200 @@ -1394,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "235c70f0-2e67-4127-87b2-5fbe91a1745a" + "40fca4cf-9052-429c-bd17-2d20db93c782" ], "accept-language": [ "en-US" @@ -1421,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "3a9ebc4e-ce8e-444b-8771-61f36abcc6f3" + "1d289416-7acf-419d-8517-c744b95f59dc" ], "client-request-id": [ - "dd21724a-4503-4dd0-8d86-45e441a43e6f" + "e284a97f-a669-46d7-9326-69f6beb15101" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "y3kcU1DfWzWNtXf-b6TRVZ5PXN469munXY2IM__OlFAYeolXqIp2WLboa7loiMW7BxGnzen7MI7qJbwfVvmGLK_xs43AUGFvdwKwTa_Os24bDRVThjONM3EglOZbloF0.gEzTO-I_QGVNzGCJ-hJSp3pK8Nrlbe_47zwGZbj2CNI" + "TSLVnBKkWEUWoZS6XSSHKtJ828JRNlunhvyc5DvhYvl1jDzzkJ7ear6D73XY28F8cQwP8Mw7OawgjYY42oZpm1S8nJJyBYuAeoOHey8sAjlRky3LuJIwx0eiLoSK7tfm.1_mUO_R3iQY-UiFkmw6JCMxFKe27zO_KE68mLuM3td4" ], "X-Content-Type-Options": [ "nosniff" @@ -1448,7 +1373,7 @@ "*" ], "Duration": [ - "1510291" + "1163118" ], "Cache-Control": [ "no-cache" @@ -1464,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:12 GMT" + "Mon, 13 Nov 2017 19:25:14 GMT" ] }, "StatusCode": 200 @@ -1476,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6a1d6fa-d4c8-44b3-99c0-19281055be8e" + "7d8f8bae-688c-4df0-813c-2adbb4716006" ], "accept-language": [ "en-US" @@ -1503,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" ], "request-id": [ - "8708745c-4ed6-4339-91dc-e9e7dd75fc07" + "aa7bc792-2372-4ad6-8043-12178e2ce550" ], "client-request-id": [ - "3eb0ea3f-acf9-4f93-a708-0c0e6bf214ee" + "d3544ae7-b2d1-4bea-a24e-4016cf2bd889" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pDRxjbYl-PNfX-F2Y1FzZktS_pTKC6LsFgD1eCBgBx32tvGmhIULBU36XT_InNH5PqGMhxPkgGfUTvwCzhBN4u1GabiwSi5wOR_r72u_5RdFaCNs5qG97uCwpQr0Zeup.WUHpwBAlZ73z9zqsB2L7ZeTabLdNXDoCB8Pv7JYuPP0" + "w2rLqysQVM7d_qVweh5gkjUw4rPfVIF9vNpuAmuiPVc847iyev-D6hDN6YidsL4EYZwlAeG3H9uh5Q7oyHcpwVtdDHQOQm16Ugi76LiTcSk3EE_9is-w6Dj0CPMaIZEc.KfibFQ0D-Y1i_90JmloeZliGnOAX457N8vXo8R3WBn4" ], "X-Content-Type-Options": [ "nosniff" @@ -1530,7 +1455,7 @@ "*" ], "Duration": [ - "1725109" + "1165571" ], "Cache-Control": [ "no-cache" @@ -1546,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:12 GMT" + "Mon, 13 Nov 2017 19:25:14 GMT" ] }, "StatusCode": 200 @@ -1558,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "146a7367-bd37-4d52-8c1c-882d21becca5" + "b58e94fc-12dd-4c90-bb35-25efcf77cdd9" ], "accept-language": [ "en-US" @@ -1585,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" + "ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=" ], "request-id": [ - "cfc5b053-994e-4a06-aa0b-612c270147d0" + "23743e63-f0cc-4f8e-a4a3-6bd3cadcfc3e" ], "client-request-id": [ - "5b4621f0-eda3-4292-b608-aad5897201ba" + "5090d101-1585-4f54-b594-c1a2ae88beee" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "UQySpV5oBICvrMzoYYxPgy2Bmu_0-CJS0LAOP5Bzy9w4Gu5IVMhRISikGrj5jDx64mTCvYbj6ENpAzwO3eJzmld8WLVGzvF5X9wQ8EZ7EIXQDUN8Vy9LMNLU5CIh_B0z.KKbFnKwfkssJ9RRf15nw4sLHfHff3TFXAqeXpgAF2v0" + "OI2OfsC_M5K3OezEAgbSyrE-LLTr6jYrPy-QS8TS-KlgGxv9hdpOHqdCbYfN-kc0qzg5eWtlFsVk7G8z7lB4N5B4TlAHpqsoaTPMkycrLNw9-pb8otxQUl-Mfhwghz62.poxMjJPlaUT2KI8fnYhhvmmr5XPkZiUuJTV5txqQDBA" ], "X-Content-Type-Options": [ "nosniff" @@ -1612,7 +1537,7 @@ "*" ], "Duration": [ - "1205603" + "1341510" ], "Cache-Control": [ "no-cache" @@ -1628,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:12 GMT" + "Mon, 13 Nov 2017 19:25:14 GMT" ] }, "StatusCode": 200 @@ -1640,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0751605f-ea96-4d6c-b0e2-f16811f9d0d9" + "74bfc238-32a9-4fbc-9f16-75f7114912a0" ], "accept-language": [ "en-US" @@ -1667,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + "ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=" ], "request-id": [ - "871ccb96-8efa-4610-a8d8-8314c61949cc" + "79314447-693f-4930-a4c8-142e08f2f836" ], "client-request-id": [ - "9151c2b3-0655-4e69-bcdf-85ba275fdc1a" + "67d9aade-c034-41b5-b066-f9f8aad97cef" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "VlXUQ2oNo-rkTjiULGOGYbFcw43nOIl3u8v1Kiu48zlEwtU5MZXepYm1MkOTO8Se1JB0XjdbBjbzF19YmtiVf4K4HY5MD9jB3luXs-7XtwjBasZBEM59tWfvopKV8LKz.lEtdNYNyp-3XkoNqWkyelZ3GhWPr7U2X-5VTpwT0Zgs" + "swx8vhn3aFZxEEj9Fc9aOZv3oHrVSS5CNdSRidsqpGVRSPhtM-wBrT11wRgH8gCyvvGLP-jsPaCZ6zad82eZYb0714wVPfx4CXm8oDj8S1dG0y4qWNIH4dDerZGiI5DS.P1t_TrVNuVIdoSudIf6onF7i31t_I6Hxmel625vf4AA" ], "X-Content-Type-Options": [ "nosniff" @@ -1694,7 +1619,7 @@ "*" ], "Duration": [ - "1941964" + "1185897" ], "Cache-Control": [ "no-cache" @@ -1710,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:12 GMT" + "Mon, 13 Nov 2017 19:25:14 GMT" ] }, "StatusCode": 200 @@ -1722,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbce8306-bea8-443a-ab78-f9df1ee4a9f1" + "5eb67020-e970-494e-85e5-5e7811f1dcf3" ], "accept-language": [ "en-US" @@ -1749,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "kIvN5OF2Oz2KKCbusTQv/mOeeDGwaZtpbDjCngL2BX4=" ], "request-id": [ - "56c55f9b-44e5-4769-b588-eaf7ff6cce45" + "8e690226-43f3-41c7-a1f9-edb8067f8a3c" ], "client-request-id": [ - "3bb518b8-3ee1-46a2-bdc7-172f04dab8dc" + "7d7f263e-ad6b-4e89-83fb-23a309874b30" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "vpZwvuVFhXD0OYiLnCwjODseX071TgEMvI4w2bC7xX8POzJxesYGUVNnDHrmON9hYIdSQhQsD_VIE2dZOItrSFGEQip28iPYE7Bins9SJAXtZMZ-gZZHY3_o12NFdu47.DqWYfczLcMOkYSMTruKBm3fB0rN4WGeFulGN6zUPPJA" + "LUl6Cfn_XVDUarjVjlQlxXV6U9G2qa7LJvRw1vSp12H7NqKuGKzKOabowtMwY7U2Z9EPBw2GNAVEO4mjxIjoFXUncOHQdxmTXeNlZljKXtj6n_uwLzLhHyPs7MAglTe5.RYt9njSxH56oSS2YSn6FV3R9uMi-NkrrUj_qHh_Dkcc" ], "X-Content-Type-Options": [ "nosniff" @@ -1776,7 +1701,7 @@ "*" ], "Duration": [ - "5813747" + "1847561" ], "Cache-Control": [ "no-cache" @@ -1792,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 @@ -1804,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e73a1616-f1a7-4497-b105-11d17879c860" + "0c52f3d8-9aed-42da-a15f-0a4a82fc571c" ], "accept-language": [ "en-US" @@ -1834,13 +1759,13 @@ "14999" ], "x-ms-request-id": [ - "bafccb88-e648-4544-96d9-6cf56fe3aa4f" + "d5ef2742-215c-4272-83dc-28aa4c6ccf8a" ], "x-ms-correlation-request-id": [ - "bafccb88-e648-4544-96d9-6cf56fe3aa4f" + "d5ef2742-215c-4272-83dc-28aa4c6ccf8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:bafccb88-e648-4544-96d9-6cf56fe3aa4f" + "WESTUS2:20171113T192515Z:d5ef2742-215c-4272-83dc-28aa4c6ccf8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1849,7 +1774,7 @@ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 @@ -1861,7 +1786,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f97b29f-bfa3-488b-921f-f8ab83ee1182" + "3ab4e857-e5dd-4378-a14a-3bf8ff78312a" ], "accept-language": [ "en-US" @@ -1891,13 +1816,13 @@ "14998" ], "x-ms-request-id": [ - "bf2a9577-b682-42d9-ac3e-88e0219c2796" + "c87295ab-a738-4255-8dbd-7e54aac1aed4" ], "x-ms-correlation-request-id": [ - "bf2a9577-b682-42d9-ac3e-88e0219c2796" + "c87295ab-a738-4255-8dbd-7e54aac1aed4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:bf2a9577-b682-42d9-ac3e-88e0219c2796" + "WESTUS2:20171113T192515Z:c87295ab-a738-4255-8dbd-7e54aac1aed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1906,7 +1831,7 @@ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 @@ -1918,7 +1843,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29a3f22f-7f7a-41f3-b61a-1f951a214e12" + "1ef89309-b131-430c-ad77-c65e99e68ab8" ], "accept-language": [ "en-US" @@ -1948,13 +1873,13 @@ "14997" ], "x-ms-request-id": [ - "1d974af8-fdfa-4f32-926d-c26c33d9451e" + "3b5d68e1-44d9-4346-a9df-3d951747fb28" ], "x-ms-correlation-request-id": [ - "1d974af8-fdfa-4f32-926d-c26c33d9451e" + "3b5d68e1-44d9-4346-a9df-3d951747fb28" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:1d974af8-fdfa-4f32-926d-c26c33d9451e" + "WESTUS2:20171113T192515Z:3b5d68e1-44d9-4346-a9df-3d951747fb28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1963,7 +1888,7 @@ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1900,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73190b48-207e-4bdc-8a23-d29ddf68fc81" + "ce69558a-cf46-4288-a3a0-c86347efd01d" ], "accept-language": [ "en-US" @@ -2005,13 +1930,13 @@ "14996" ], "x-ms-request-id": [ - "647825b8-560d-4fb0-9c23-7f35caa971ab" + "ebe522b0-494b-4bfd-9212-f380aff6caee" ], "x-ms-correlation-request-id": [ - "647825b8-560d-4fb0-9c23-7f35caa971ab" + "ebe522b0-494b-4bfd-9212-f380aff6caee" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:647825b8-560d-4fb0-9c23-7f35caa971ab" + "WESTUS2:20171113T192515Z:ebe522b0-494b-4bfd-9212-f380aff6caee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2020,7 +1945,7 @@ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 @@ -2032,7 +1957,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfac572a-6cbb-4d07-8fe8-d7184361c8d9" + "2adfd11c-f86c-45bd-a88e-f35fe2dc2e14" ], "accept-language": [ "en-US" @@ -2062,13 +1987,13 @@ "14995" ], "x-ms-request-id": [ - "ed01900d-66ef-48e0-a71e-15337b089b65" + "cf6c25bf-2ab7-4d4a-a82b-0025b6f2716f" ], "x-ms-correlation-request-id": [ - "ed01900d-66ef-48e0-a71e-15337b089b65" + "cf6c25bf-2ab7-4d4a-a82b-0025b6f2716f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:ed01900d-66ef-48e0-a71e-15337b089b65" + "WESTUS2:20171113T192515Z:cf6c25bf-2ab7-4d4a-a82b-0025b6f2716f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,76 +2002,19 @@ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:13 GMT" + "Mon, 13 Nov 2017 19:25:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Reader'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdSZWFkZXInJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f6823d2-18a1-4e1e-a0f5-35ef47133283" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.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/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/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/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/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/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": [ - "73362" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" - ], - "x-ms-correlation-request-id": [ - "3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171113T180614Z:3bb4d0bc-8e19-436e-8e45-a6fcf1bd4fa6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 13 Nov 2017 18:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'CustomRole%20Tests%20Role'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b21Sb2xlJTIwVGVzdHMlMjBSb2xlJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2275152a-a13b-49fd-b721-1cb9cb8a158c" + "b7a48bef-8ec3-46f7-b434-ac21333cf317" ], "accept-language": [ "en-US" @@ -2158,10 +2026,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\r\n}", + "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": [ - "714" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2173,7 +2041,7 @@ "no-cache" ], "x-ms-request-id": [ - "8299e8da-e962-4d3f-8771-b1dcd2e32837" + "eef84e85-caa9-4047-ad0f-b7d3ff14e911" ], "X-Content-Type-Options": [ "nosniff" @@ -2182,19 +2050,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "1be8e03d-8ac6-4042-bd05-eb3be83489a0" + "ecbd69c1-796f-4448-bbf5-32583be4aebc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180615Z:1be8e03d-8ac6-4042-bd05-eb3be83489a0" + "WESTUS2:20171113T192516Z:ecbd69c1-796f-4448-bbf5-32583be4aebc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:14 GMT" + "Mon, 13 Nov 2017 19:25:16 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2209,13 +2077,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'CustomRole%20Tests%20Role'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b21Sb2xlJTIwVGVzdHMlMjBSb2xlJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "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}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "504" + ], "x-ms-client-request-id": [ - "6d30e5a8-5673-4e65-82e1-fcb5dbda7378" + "42353cc9-babe-4fcc-a7fa-dd446ee1dc7e" ], "accept-language": [ "en-US" @@ -2227,10 +2101,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n }\r\n ]\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-11-13T19:25:17.2090291Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:17.2090291Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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": [ - "714" + "744" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2242,7 +2116,76 @@ "no-cache" ], "x-ms-request-id": [ - "366cfdec-dc21-41e9-b3ae-4f4d88d2a3ea" + "76b20669-5034-4be3-ae3a-308ce014e2f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c1605213-155a-4b97-bdbb-b9d05105be2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T192518Z:c1605213-155a-4b97-bdbb-b9d05105be2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 19:25:18 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?$filter=roleName%20eq%20'Custom%20Reader%20Test'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b20lMjBSZWFkZXIlMjBUZXN0JyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42e0e647-7006-4d88-9362-509f588c8c28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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-11-13T19:25:17.2090291Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:17.2090291Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4cb63af1-9e93-4c0a-ac3c-f21ee62925b0" ], "X-Content-Type-Options": [ "nosniff" @@ -2251,19 +2194,88 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "4f567179-3d4b-459d-b5da-8e171eadbe28" + "ec1a503d-1c62-4b9a-850f-234b38ecc5fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180615Z:4f567179-3d4b-459d-b5da-8e171eadbe28" + "WESTUS2:20171113T192519Z:ec1a503d-1c62-4b9a-850f-234b38ecc5fa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:14 GMT" + "Mon, 13 Nov 2017 19:25:18 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/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Custom%20Reader%20Test'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDdXN0b20lMjBSZWFkZXIlMjBUZXN0JyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c8cf6ae-ea5b-483a-bfec-d80253fb13c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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-11-13T19:25:17.2090291Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:17.2090291Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be3d56be-ce53-446d-9a3c-09f94ba367bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "0d2caf01-a04c-4b14-bdf9-c7f3bf33499d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T192519Z:0d2caf01-a04c-4b14-bdf9-c7f3bf33499d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 19:25:19 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2281,7 +2293,7 @@ "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\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 }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2290,7 +2302,7 @@ "254" ], "x-ms-client-request-id": [ - "c3dd5466-bb24-4048-84f9-f276a97cba5f" + "83a3eca8-cf83-4296-b449-881632da5c2f" ], "accept-language": [ "en-US" @@ -2302,7 +2314,7 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:15.6546496Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:15.6546496Z\",\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 \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T19:25:19.6427702Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:19.6427702Z\",\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}", "ResponseHeaders": { "Content-Length": [ "686" @@ -2317,7 +2329,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ee1ae47-dc63-48ad-97a2-affb4cedd109" + "d7e961f2-cc77-443b-a769-9ad1eb8d3da0" ], "X-Content-Type-Options": [ "nosniff" @@ -2326,19 +2338,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "b6484338-e6d4-4146-a9d7-3c650f102675" + "f8f52383-df43-4b7c-9a4f-4df7dfdc9e06" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180617Z:b6484338-e6d4-4146-a9d7-3c650f102675" + "WESTUS2:20171113T192522Z:f8f52383-df43-4b7c-9a4f-4df7dfdc9e06" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2353,13 +2365,13 @@ "StatusCode": 201 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzMmY2MWQyLWVkMDktNDBjOS04NjU3LTI2YTI3M2RhN2JhZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b66a08ba-eb01-49c3-a9b8-d69ebb6434f1" + "fff2ced2-4fbd-4371-ad65-2e5a6b8392b3" ], "accept-language": [ "en-US" @@ -2371,10 +2383,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-11-13T19:23:25.1951234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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": [ - "702" + "744" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2386,7 +2398,7 @@ "no-cache" ], "x-ms-request-id": [ - "97767505-8d04-4a26-96a7-3ad8f3d82c3e" + "89c39ccd-93e4-4001-bb1e-3232ab789001" ], "X-Content-Type-Options": [ "nosniff" @@ -2395,19 +2407,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "03f11c0f-1b19-480d-bf5f-c0bf948ae806" + "a4767944-3b33-4c79-9dad-408477562a8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180617Z:03f11c0f-1b19-480d-bf5f-c0bf948ae806" + "WESTUS2:20171113T192522Z:a4767944-3b33-4c79-9dad-408477562a8f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2422,13 +2434,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzMmY2MWQyLWVkMDktNDBjOS04NjU3LTI2YTI3M2RhN2JhZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee164d77-b045-4ae6-befc-20fddc55b1f8" + "5c9c2a7b-49cb-42d3-a448-f8a2f0c3f63b" ], "accept-language": [ "en-US" @@ -2440,10 +2452,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-11-13T19:23:25.1951234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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": [ - "702" + "744" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,7 +2467,7 @@ "no-cache" ], "x-ms-request-id": [ - "bdfe6ffa-3188-4e6a-a896-ca11e6191ad7" + "7a734dc2-916f-430b-a79d-6dec2b40b2a9" ], "X-Content-Type-Options": [ "nosniff" @@ -2464,19 +2476,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "f5d521fa-2953-45e5-b6df-b10fcd03e34f" + "8a7228ea-0035-4a3c-b4de-1dff8b17fc29" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180621Z:f5d521fa-2953-45e5-b6df-b10fcd03e34f" + "WESTUS2:20171113T192525Z:8a7228ea-0035-4a3c-b4de-1dff8b17fc29" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:20 GMT" + "Mon, 13 Nov 2017 19:25:25 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2503,7 +2515,7 @@ "116" ], "x-ms-client-request-id": [ - "95e02fc9-b3d1-4fef-833d-e61ac1578b37" + "920fb8e4-5c01-4fd2-9463-2aa14c5c48dd" ], "accept-language": [ "en-US" @@ -2530,19 +2542,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "53a2ea54-f410-4026-8589-4e9848a80b84" + "eb95ac81-169a-40f0-ad2c-64def9cb3d74" ], "client-request-id": [ - "3cc9db5c-2f19-4b58-b518-76a3446afd1d" + "a7e4242a-659e-45c5-a6af-388aec563f54" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "12lXA9ZCo_fVJyjDae1ifvbCj6oq5WqoWUu-DAqrDDubnUV_RHcoUuaMy-9e-pCdiNhhplLuK3WEnDHqs2w62A_xRsuJeB8JqeDVpUCxrS3RGk0eVvA7Icrz2viFjV8Z.Puu3jIrKy3XeEHgJmVEMQgFBVhZt-4VsfsZ3p17wXyM" + "eNjuf7rlZawjVxfeACNOR7oBBJaRuk0t_eTKLjqrEsUPqevDu-Z6X2xzGqJRolkbZ12fC86CIg8q0-NSJA3eI1OUorCFFdHd2sYJrtt-kVaVdbjpW0PDGPTNUYiT9ixL.I01b7ZvKIo3kyaGBvdeM-2gc030qw4-9ekYU8hMYzwk" ], "X-Content-Type-Options": [ "nosniff" @@ -2557,7 +2569,7 @@ "*" ], "Duration": [ - "776215" + "762464" ], "Cache-Control": [ "no-cache" @@ -2573,7 +2585,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:22 GMT" ] }, "StatusCode": 200 @@ -2582,16 +2594,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 \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\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 \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\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 \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\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 \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\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 \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\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 \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\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 \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\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 \"05304157-0533-46cc-88cc-cf67f6e176f3\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3221" + "3266" ], "x-ms-client-request-id": [ - "5343db3a-eb97-48d8-8196-1e35a2a37e3c" + "8c120c9c-2927-4c39-9839-3dd18e208b85" ], "accept-language": [ "en-US" @@ -2618,19 +2630,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "U+YMVzOyT/t0EcKWN1svOsrZWxSmfEz8fYuEmDuRH8w=" + "LY/yJbtWyuhbIWwwzINxuwIEezUchbj+/ceSqG17f24=" ], "request-id": [ - "b1b86fa9-6358-4a19-a04a-1b39fa53d13d" + "ac243cfa-c8f4-4122-9b25-8263f0d6f520" ], "client-request-id": [ - "cf98746a-bfaa-416f-8f53-8bede79edc9f" + "b4e5a6d7-4857-4e07-812f-87ebf9be727e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "aa9jQ3qJ1R8rp5GarMkkrDfqXmH6L54MJ-6loiGBwzFJB6rn-OIg6tcoeljwwgutgDeQ_Rvhv3hI9PlQYEUFpbj1_eTzjuX_SMvRhJ2IvUcT15_RnMoxMMCjlkDea3td.mGd8-lUAY6CwGsfeykCQsxg-r5EavIMVL48S4Ant9Sg" + "PH0qBF-xr5RLEZ3lupAKjv4CERrjzasnEKaf4Qn4e_cn9JkkonR8YHGEw8TEPj-1wCL5GyKIJwkiYpR-3BRRDPnL5YzB1yCKKaA2f2LGeAJqZHUzI07NtnttlLPmNXVU.8McZi_U3CHgKCf5qOdfnNgl_v1Scgd3WNg-14SeI2gY" ], "X-Content-Type-Options": [ "nosniff" @@ -2645,7 +2657,7 @@ "*" ], "Duration": [ - "2140454" + "1488836" ], "Cache-Control": [ "no-cache" @@ -2661,7 +2673,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:23 GMT" ] }, "StatusCode": 200 @@ -2679,7 +2691,7 @@ "161" ], "x-ms-client-request-id": [ - "1d855f04-f22e-4be6-b646-9c2a495bf8f0" + "9d82bfdd-48ee-4c0b-98f3-1f92217d9cc5" ], "accept-language": [ "en-US" @@ -2706,19 +2718,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" ], "request-id": [ - "0f5a3a7b-66d2-42b9-8f8a-e4326baec474" + "105e7f1a-b07a-48d7-8cec-48fd6db31615" ], "client-request-id": [ - "ae22c82b-65d7-4667-a34c-f977e27bbd78" + "8f767ff8-d731-4b16-ac21-d7f2d785a34e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "bmhuWUPctkgoAYzUf8H3PduFrD8DuH_jvyKlpflH_qi1Y2e7qQSjaqAcfY7Elw1n5U0Mp0gFz1w2GkyvuspeJXml5kSG1vRYBS132yAxcAZrLuTmgGSAuakXbkVv7_hK.urU75bwVByxKQzdb1noFz4W8Hr7dhkWQJHG5kHhZ58g" + "WLcU69qzmb-isrpSHRMkNyrr6r2uX3_PjbheCtfSNTq5UtR22YEd-vR_cfzWyCA_m1oHd9H02VC23PJfBvW1bVtaeX5UhbF4a170pwRLBP94PSb14E0kS28C9WUjHu--.gIN-qyrDLIzuvigHs3alZR6tiXb9o9kmp_0zThvfKhU" ], "X-Content-Type-Options": [ "nosniff" @@ -2733,7 +2745,7 @@ "*" ], "Duration": [ - "1341924" + "727964" ], "Cache-Control": [ "no-cache" @@ -2749,7 +2761,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:18 GMT" + "Mon, 13 Nov 2017 19:25:24 GMT" ] }, "StatusCode": 200 @@ -2767,7 +2779,7 @@ "116" ], "x-ms-client-request-id": [ - "74b5b136-6d1a-405c-acb6-e2aa2170ae8c" + "54e2c8ed-0413-4fb3-8ad2-c4ee4c1b10ae" ], "accept-language": [ "en-US" @@ -2794,19 +2806,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "a40d8f9a-c169-4166-b8dd-05772d70ac84" + "ddc9a3c5-85d2-48c0-9c21-0ddd6c83d493" ], "client-request-id": [ - "aadcf8f1-9d3e-41a5-aa9d-16a68bbdb9ab" + "58cf64bf-0dc5-46bf-b3b3-dddd1bc71995" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "sj1rIrEA9lFsj7lQEA4gb00lr7Z5gb9QgQkXQ1FCCHnm5Jp1jkF0zmJU6OEotRyTogHmYFLfVNqMPw7W9VSEWklqZHSt9hrJdBUHqU9j1cy6YIVaDtvUNxmEp04F-4av.epZCj-vHK3oHn9z0TjRWO_EqdW6PkYZETBtTX-BdPgY" + "fmPH0zonVMqe1WHp_nJOVF1f83TYC1kAAp9oyNFL00AlDoX-p9sTHgFQp416jlLR2nEI9Fir5wNNpFMH-6k-D7ofvY5hccLXuy47fz1jVDSkONEh0GgNxrneFVZBlQdW.yKY_8BKbHqQVws7_TEgHMiQvXxBhd2XT7DM0i6g6Ai4" ], "X-Content-Type-Options": [ "nosniff" @@ -2821,7 +2833,7 @@ "*" ], "Duration": [ - "714657" + "748462" ], "Cache-Control": [ "no-cache" @@ -2837,7 +2849,7 @@ "ASP.NET" ], "Date": [ - "Mon, 13 Nov 2017 18:06:22 GMT" + "Mon, 13 Nov 2017 19:25:27 GMT" ] }, "StatusCode": 200 @@ -2849,7 +2861,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "633e4f6b-e3d1-45f7-b8e1-afa0b70f96ee" + "d8f05b9f-12ee-4347-b809-f8671a1e1752" ], "accept-language": [ "en-US" @@ -2861,10 +2873,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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\": \"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\": \"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\": \"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\": \"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\": \"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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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\": \"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 \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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\": \"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\": \"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\": \"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\": \"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/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/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/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\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:22:09.7248761Z\",\r\n \"updatedOn\": \"2017-06-16T17:22:09.7248761Z\",\r\n \"createdBy\": \"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/e47a589f-7181-4a92-8246-e5ff4d6a4e5e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e47a589f-7181-4a92-8246-e5ff4d6a4e5e\"\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/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\": \"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 \"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 \"scope\": \"/\",\r\n \"createdOn\": \"2017-11-13T19:24:19.9222149Z\",\r\n \"updatedOn\": \"2017-11-13T19:24:19.5784697Z\",\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/3877a584-f096-4da0-95a6-41458b091a33\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3877a584-f096-4da0-95a6-41458b091a33\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "49977" + "50597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2876,7 +2888,7 @@ "no-cache" ], "x-ms-request-id": [ - "6be1c86b-4f01-4920-aa4a-a7755501294f" + "0e4d2b29-7bd4-4bc5-8ca6-5f1d124348bf" ], "X-Content-Type-Options": [ "nosniff" @@ -2885,19 +2897,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14995" ], "x-ms-correlation-request-id": [ - "2f230897-4203-44b4-8bc6-69e64b2021c1" + "debdfbf8-9225-4a90-bde5-ed16f5ad8d45" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180618Z:2f230897-4203-44b4-8bc6-69e64b2021c1" + "WESTUS2:20171113T192522Z:debdfbf8-9225-4a90-bde5-ed16f5ad8d45" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:22 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2918,7 +2930,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7d7d036-e119-4bbf-bb37-83f73f893af0" + "06dc64e1-3794-459f-b00b-8bcc5969daf4" ], "accept-language": [ "en-US" @@ -2930,10 +2942,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-11-13T19:23:25.1951234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "128457" + "128085" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2945,7 +2957,7 @@ "no-cache" ], "x-ms-request-id": [ - "86228f4a-4530-4806-99fa-7cf5826be393" + "a115aee2-58a2-402a-ae3d-10d252eaaf4d" ], "X-Content-Type-Options": [ "nosniff" @@ -2954,19 +2966,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14994" ], "x-ms-correlation-request-id": [ - "96f09bbd-5f3b-44fe-a4c3-ac7b2e0369ac" + "57596280-e69b-4cec-858b-767d4ce2be61" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180618Z:96f09bbd-5f3b-44fe-a4c3-ac7b2e0369ac" + "WESTUS2:20171113T192523Z:57596280-e69b-4cec-858b-767d4ce2be61" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:17 GMT" + "Mon, 13 Nov 2017 19:25:22 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2987,7 +2999,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ea1ffb2-9897-46e4-8008-f47e7fef52fc" + "89919947-6d60-4eed-a189-bcfe956b0c49" ], "accept-language": [ "en-US" @@ -2999,7 +3011,7 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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/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 \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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/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}", "ResponseHeaders": { "Content-Length": [ "1505" @@ -3014,7 +3026,7 @@ "no-cache" ], "x-ms-request-id": [ - "2b6f59ce-5c18-46d3-af48-373f324eeb90" + "e5574e7a-4f5f-4b33-9a27-193c612a7fd7" ], "X-Content-Type-Options": [ "nosniff" @@ -3023,19 +3035,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14993" ], "x-ms-correlation-request-id": [ - "9e6442db-e3c1-476b-bf77-c5a811a787b2" + "2f67aba6-7956-4f2e-821e-7c42d94e6c39" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180619Z:9e6442db-e3c1-476b-bf77-c5a811a787b2" + "WESTUS2:20171113T192523Z:2f67aba6-7956-4f2e-821e-7c42d94e6c39" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:18 GMT" + "Mon, 13 Nov 2017 19:25:23 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3056,7 +3068,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5a8cb31-08eb-4113-9f22-c1ab3bf5b07f" + "eb283e38-a735-4be2-b154-549ebf5d1775" ], "accept-language": [ "en-US" @@ -3083,7 +3095,7 @@ "no-cache" ], "x-ms-request-id": [ - "8dad856c-a60d-490e-bf26-eded860f6e8e" + "4ab55a14-e73a-4a4f-8438-4efa46df69f9" ], "X-Content-Type-Options": [ "nosniff" @@ -3092,19 +3104,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "71fd2796-418b-4ad9-a1c7-a3049c1dcaa6" + "befe31fc-9f36-47ed-81ce-15e27f981978" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180622Z:71fd2796-418b-4ad9-a1c7-a3049c1dcaa6" + "WESTUS2:20171113T192526Z:befe31fc-9f36-47ed-81ce-15e27f981978" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:21 GMT" + "Mon, 13 Nov 2017 19:25:26 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3125,7 +3137,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "caeb7e4d-673e-473d-ac31-d994628a9820" + "10685a81-a7ae-4187-ae6b-055b103c215d" ], "accept-language": [ "en-US" @@ -3137,10 +3149,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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 Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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-11-13T19:25:17.2090291Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:17.2090291Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "128457" + "128085" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3152,7 +3164,76 @@ "no-cache" ], "x-ms-request-id": [ - "f14a44b7-b031-4746-8515-6c6fa7ceaeab" + "1bc19cca-8dfc-424e-8c59-3660713b2bb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "43157d35-7efa-4fb5-93f2-f4911cb85043" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171113T192524Z:43157d35-7efa-4fb5-93f2-f4911cb85043" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 13 Nov 2017 19:25:23 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05130b9f-8bb7-4777-b0ed-20e077b47cb7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.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-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-11-13T19:23:25.1951234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ + "128085" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee615c9a-1ce4-4175-888e-46c97d67181a" ], "X-Content-Type-Options": [ "nosniff" @@ -3164,85 +3245,16 @@ "14989" ], "x-ms-correlation-request-id": [ - "82f4a776-5182-40e7-a0d4-11d97678b847" + "8f3d37da-8eba-4c38-8be4-382e46be906b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180619Z:82f4a776-5182-40e7-a0d4-11d97678b847" + "WESTUS2:20171113T192526Z:8f3d37da-8eba-4c38-8be4-382e46be906b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:18 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/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e9d8b61-1ed9-4fbb-bc54-6b0591252b39" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\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.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-09T23:37:56.1602514Z\",\r\n \"updatedOn\": \"2017-08-09T23:51:30.3185143Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\": \"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_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_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_e89d02d72842405b8caec3705aeb60f1\",\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:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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 ],\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-06-08T21:13:46.3743438Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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\"\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-05-10T19:13:43.638591Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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-07-06T21:19:48.687068Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\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\": \"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/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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 ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:40:03.7331761Z\",\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/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/operationResults/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\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-08-24T16:52:56.9679438Z\",\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/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/locations/*/read\"\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/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-06-16T21:33:44.5854549Z\",\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/read\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\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/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-08-28T05:53:14.525175Z\",\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": [ - "127754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "006605f5-1564-4707-a4a5-48d362d48a32" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "128a18d8-6d88-477f-bcad-d7a16a6ad946" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171113T180622Z:128a18d8-6d88-477f-bcad-d7a16a6ad946" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 13 Nov 2017 18:06:21 GMT" + "Mon, 13 Nov 2017 19:25:26 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3263,7 +3275,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b7cac79-a4d6-4b15-949e-1659d8273e72" + "0cb615eb-f76a-4edb-b818-c02701c347a4" ], "accept-language": [ "en-US" @@ -3275,7 +3287,7 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:17.2594846Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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 \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:21.4865616Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-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}", "ResponseHeaders": { "Content-Length": [ "720" @@ -3290,7 +3302,7 @@ "no-cache" ], "x-ms-request-id": [ - "298b4ea2-16cb-4d61-9cb8-b838eb84fe98" + "81392aaf-fc11-47d1-8b99-56a34cb3cf5f" ], "X-Content-Type-Options": [ "nosniff" @@ -3299,19 +3311,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "8fddb254-b384-4be6-a9f2-5dc8e561a7a8" + "8dcacc37-4a3d-473f-a8f1-141c0833a0da" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180620Z:8fddb254-b384-4be6-a9f2-5dc8e561a7a8" + "WESTUS2:20171113T192525Z:8dcacc37-4a3d-473f-a8f1-141c0833a0da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:20 GMT" + "Mon, 13 Nov 2017 19:25:25 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3326,13 +3338,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzhkN2RkNjllLTlhZTItNDRhMS05NGQ4LWY3YmM4ZTEyNjQ1ZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzMmY2MWQyLWVkMDktNDBjOS04NjU3LTI2YTI3M2RhN2JhZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbd109e2-84bc-4f07-bae0-1c3097041890" + "2d4ab3be-f2ce-44b2-8a78-7ee84bdc1855" ], "accept-language": [ "en-US" @@ -3344,10 +3356,10 @@ "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test 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.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"updatedOn\": \"2017-11-13T18:06:05.6489583Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\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-11-13T19:25:17.2090291Z\",\r\n \"updatedOn\": \"2017-11-13T19:25:17.2090291Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-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": [ - "702" + "744" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3359,7 +3371,7 @@ "no-cache" ], "x-ms-request-id": [ - "e08af311-7033-4a1c-b8d8-0a6449ff33b7" + "fa4144f5-f039-45fe-a082-5fd26cd60916" ], "X-Content-Type-Options": [ "nosniff" @@ -3368,19 +3380,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "e9aa2df1-015e-4f70-82c4-6a2042032c42" + "596cc6de-7821-485a-b606-a8cfc1ff784f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171113T180622Z:e9aa2df1-015e-4f70-82c4-6a2042032c42" + "WESTUS2:20171113T192526Z:596cc6de-7821-485a-b606-a8cfc1ff784f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 13 Nov 2017 18:06:21 GMT" + "Mon, 13 Nov 2017 19:25:26 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" From a684236f5790f5f1ea3bf4e2fbf76dd2b9be29f5 Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Mon, 13 Nov 2017 14:51:18 -0800 Subject: [PATCH 34/37] update help docs --- .../Commands.Resources/help/New-AzureRmADAppCredential.md | 6 +++--- .../Commands.Resources/help/New-AzureRmADApplication.md | 4 ++-- .../help/New-AzureRmADServicePrincipal.md | 6 +++--- .../Commands.Resources/help/New-AzureRmADSpCredential.md | 6 +++--- .../Resources/Commands.Resources/help/New-AzureRmADUser.md | 4 ++-- .../Resources/Commands.Resources/help/Set-AzureRmADUser.md | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md index d4c4a34b3a..a9073caa2d 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md @@ -15,7 +15,7 @@ Adds a credential to an existing application. ### ApplicationObjectIdWithPasswordParameterSet (Default) ``` -New-AzureRmADAppCredential -ObjectId -Password [-StartDate ] [-EndDate ] +New-AzureRmADAppCredential -ObjectId -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -33,7 +33,7 @@ New-AzureRmADAppCredential -ApplicationId -CertValue [-StartDa ### ApplicationIdWithPasswordParameterSet ``` -New-AzureRmADAppCredential -ApplicationId -Password [-StartDate ] +New-AzureRmADAppCredential -ApplicationId -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -156,7 +156,7 @@ Accept wildcard characters: False The password to be associated with the application. ```yaml -Type: String +Type: SecureString Parameter Sets: ApplicationObjectIdWithPasswordParameterSet, ApplicationIdWithPasswordParameterSet Aliases: diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md index 2bd57ecd63..1b6e04edf6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md @@ -23,7 +23,7 @@ New-AzureRmADApplication -DisplayName -IdentifierUris [-Home ### ApplicationWithPasswordPlainParameterSet ``` New-AzureRmADApplication -DisplayName -IdentifierUris [-HomePage ] - [-ReplyUrls ] [-AvailableToOtherTenants ] -Password [-StartDate ] + [-ReplyUrls ] [-AvailableToOtherTenants ] -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -197,7 +197,7 @@ Accept wildcard characters: False The password to be associated with the application. ```yaml -Type: String +Type: SecureString Parameter Sets: ApplicationWithPasswordPlainParameterSet Aliases: diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md index 25e51918b2..e0af92e1d7 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md @@ -21,7 +21,7 @@ New-AzureRmADServicePrincipal -ApplicationId [-DefaultProfile -Password [-StartDate ] +New-AzureRmADServicePrincipal -ApplicationId -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -51,7 +51,7 @@ New-AzureRmADServicePrincipal -DisplayName [-DefaultProfile -Password [-StartDate ] +New-AzureRmADServicePrincipal -DisplayName -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -205,7 +205,7 @@ Accept wildcard characters: False The password to be associated with the service principal. ```yaml -Type: String +Type: SecureString Parameter Sets: ApplicationWithPasswordPlainParameterSet, DisplayNameWithPasswordPlainParameterSet Aliases: diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md index fec29e077a..f56aae776c 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md @@ -15,7 +15,7 @@ Adds a credential to an existing service principal. ### SpObjectIdWithPasswordParameterSet (Default) ``` -New-AzureRmADSpCredential -ObjectId -Password [-StartDate ] [-EndDate ] +New-AzureRmADSpCredential -ObjectId -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -33,7 +33,7 @@ New-AzureRmADSpCredential -ServicePrincipalName -CertValue [-S ### SPNWithPasswordParameterSet ``` -New-AzureRmADSpCredential -ServicePrincipalName -Password [-StartDate ] +New-AzureRmADSpCredential -ServicePrincipalName -Password [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -149,7 +149,7 @@ Accept wildcard characters: False The password to be associated with the application. ```yaml -Type: String +Type: SecureString Parameter Sets: SpObjectIdWithPasswordParameterSet, SPNWithPasswordParameterSet Aliases: diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADUser.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADUser.md index 0766c3f632..3b230ba9b5 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADUser.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADUser.md @@ -14,7 +14,7 @@ Creates a new active directory user. ## SYNTAX ``` -New-AzureRmADUser -DisplayName -UserPrincipalName -Password [-ImmutableId ] +New-AzureRmADUser -DisplayName -UserPrincipalName -Password [-ImmutableId ] [-ForceChangePasswordNextLogin] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -102,7 +102,7 @@ It must meet the tenant's password complexity requirements. It is recommended to set a strong password. ```yaml -Type: String +Type: SecureString Parameter Sets: (All) Aliases: diff --git a/src/ResourceManager/Resources/Commands.Resources/help/Set-AzureRmADUser.md b/src/ResourceManager/Resources/Commands.Resources/help/Set-AzureRmADUser.md index d21ccb1c67..aa90cc4ffd 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/Set-AzureRmADUser.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/Set-AzureRmADUser.md @@ -15,7 +15,7 @@ Updates an existing active directory user. ``` Set-AzureRmADUser -UPNOrObjectId [-DisplayName ] [-EnableAccount ] - [-Password ] [-ForceChangePasswordNextLogin] [-DefaultProfile ] [-WhatIf] + [-Password ] [-ForceChangePasswordNextLogin] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -104,7 +104,7 @@ It must meet the tenant's password complexity requirements. It is recommended to set a strong password. ```yaml -Type: String +Type: SecureString Parameter Sets: (All) Aliases: From 12c39d059cff224a9a463c6b66b780034c77a8d0 Mon Sep 17 00:00:00 2001 From: Haridarshan Hosakere Sudhakar Date: Mon, 13 Nov 2017 15:51:53 -0800 Subject: [PATCH 35/37] updadte cmndlets help --- .../Commands.Resources/help/New-AzureRmADAppCredential.md | 3 ++- .../Commands.Resources/help/New-AzureRmADApplication.md | 3 ++- .../Commands.Resources/help/New-AzureRmADServicePrincipal.md | 3 ++- .../Commands.Resources/help/New-AzureRmADSpCredential.md | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md index a9073caa2d..95cc332275 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADAppCredential.md @@ -45,7 +45,8 @@ The application is identified by supplying either the application object id or a ### -------------------------- Example 1 -------------------------- ``` -PS E:\> New-AzureRmADAppCredential -ObjectId 1f89cf81-0146-4f4e-beae-2007d0668416 -Password P@ssw0rd! +PS E:\> $SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force +PS E:\> New-AzureRmADAppCredential -ObjectId 1f89cf81-0146-4f4e-beae-2007d0668416 -Password $SecureStringPassword ``` A new password credential is added to an existing application. diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md index 1b6e04edf6..ee4ae417eb 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADApplication.md @@ -62,8 +62,9 @@ Creates a new azure active directory application without any credentials. ### -------------------------- Create new AAD application with password. -------------------------- ``` +PS E:\> $SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force PS C:\> New-AzureRmADApplication -DisplayName "NewApplication" -HomePage "http://www.microsoft.com" -IdentifierUris "http: -//NewApplication" -Password "password" +//NewApplication" -Password $SecureStringPassword ``` Creates a new azure active directory application and associates password credentials with it. diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md index e0af92e1d7..32a5140f5b 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADServicePrincipal.md @@ -94,7 +94,8 @@ DemoApp ServicePrincipal f95b6f5c-fc98-4af0 ### -------------------------- Example 2 -------------------------- ``` -New-AzureRmADServicePrincipal -DisplayName SPForNoExistingApp +$SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force +New-AzureRmADServicePrincipal -DisplayName SPForNoExistingApp -Password $SecureStringPassword ``` Creates a new service principal. diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md index f56aae776c..5f4abd3cec 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md @@ -45,7 +45,8 @@ The service principal is identified by supplying either the object id or service ### -------------------------- Example 1 -------------------------- ``` -PS E:\> New-AzureRmADSpCredential -ObjectId 1f99cf81-0146-4f4e-beae-2007d0668476 -Password "P@ssw0rd!" +PS E:\> $SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force +PS E:\> New-AzureRmADSpCredential -ObjectId 1f99cf81-0146-4f4e-beae-2007d0668476 -Password $SecureStringPassword ``` A new password credential is added to an existing service principal. From d1c2a02f58e77bba7ffe3a60f759ecdfb15b5217 Mon Sep 17 00:00:00 2001 From: William Eastbury Date: Tue, 14 Nov 2017 15:39:03 +0000 Subject: [PATCH 36/37] Update for Caching typo --- .../Stack/Commands.Compute/help/Set-AzureRMVMDataDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Compute/Stack/Commands.Compute/help/Set-AzureRMVMDataDisk.md b/src/ResourceManager/Compute/Stack/Commands.Compute/help/Set-AzureRMVMDataDisk.md index c36092a0c5..a5bca144d6 100644 --- a/src/ResourceManager/Compute/Stack/Commands.Compute/help/Set-AzureRMVMDataDisk.md +++ b/src/ResourceManager/Compute/Stack/Commands.Compute/help/Set-AzureRMVMDataDisk.md @@ -40,7 +40,7 @@ The command stores it in the $VM variable. The second command modifies the caching mode for the data disk named DataDisk01 on the virtual machine in $VM. The command passes the result to the Update-AzureRmVM cmdlet, which implements your changes. -A change to the cashing mode causes the virtual machine to restart. +A change to the caching mode causes the virtual machine to restart. ## PARAMETERS From 459ab30f456acff6faca7f269b4db0ff99fc8b09 Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Tue, 14 Nov 2017 13:51:59 -0800 Subject: [PATCH 37/37] fix comments --- documentation/Using-Azure-TestFramework.md | 2 +- .../EnvironmentSetupHelper.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/Using-Azure-TestFramework.md b/documentation/Using-Azure-TestFramework.md index fae66d6015..02aed31970 100644 --- a/documentation/Using-Azure-TestFramework.md +++ b/documentation/Using-Azure-TestFramework.md @@ -43,7 +43,7 @@ This cmdlet, located in Repo-Tasks, will allow you to create a credentials file #### Create New Service Principal -Using a Service Principal is the preferred option for recording test because it works with both .NET Framework and .NET Core. In order to create a new Service Principal run this command with a unused ServicePrincipal display name: +Using a Service Principal is the preferred option for recording tests because it works with both .NET Framework and .NET Core. In order to create a new Service Principal run this command with a unused ServicePrincipal display name: ```powershell New-TestCredential -ServicePrincipalDisplayName "ScenarioTestCredentials" -ServicePrincipalSecret ` diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index dc7f50c2d2..2b747e672d 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -90,7 +90,7 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest // Set RunningMocked TestMockSupport.RunningMocked = HttpMockServer.GetCurrentMode() == HttpRecorderMode.Playback; - if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.azure/testcredentials.json")) + if (File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".azure", "testcredentials.json"))) { SetEnvironmentVariableFromCredentialFile(); } @@ -202,7 +202,7 @@ namespace Microsoft.WindowsAzure.Commands.ScenarioTest public void SetEnvironmentVariableFromCredentialFile() { - var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".azure/testcredentials.json"); + var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".azure", "testcredentials.json"); Dictionary credentials; using (StreamReader r = new StreamReader(filePath)) {